For web applications i have always used the Web.Config to store the current version of the site and another setting to show/hide it in the site footer for version control on staging and production.
You can also try the following:
create AssemblyInfo.cs file in the web application root that has the following
using System.Reflection;
using System.Runtime.CompilerServices;
...
[assembly: AssemblyVersion("1.0.*")]
...
then use
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()
Here is an examlple of what a AssemblyInfo.cs should look like