K
Ken Cox [Microsoft MVP]
You're on the right track. Here's what I do....
In the AssemblyInfo.vb file, make sure you are updating this portion:
<Assembly: AssemblyVersion("0.12.17.*")>
In one of your pages, or in a separate ver.aspx page, put a label to display
the version:
lblVersion.Text =
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString
Does this help?
Ken
MVP [ASP.NET]
--
Microsoft MVPs have a question for *you*: Are you patched against the Worm?
http://www.microsoft.com/security/security_bulletins/ms03-026.asp
If i keep sending different releases of an asp.net application to a
customer, how do i get him to report which version he is using at a given
point ? Can this be related to the versioning facility of asp.net ?
Thanks.
In the AssemblyInfo.vb file, make sure you are updating this portion:
<Assembly: AssemblyVersion("0.12.17.*")>
In one of your pages, or in a separate ver.aspx page, put a label to display
the version:
lblVersion.Text =
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString
Does this help?
Ken
MVP [ASP.NET]
--
Microsoft MVPs have a question for *you*: Are you patched against the Worm?
http://www.microsoft.com/security/security_bulletins/ms03-026.asp
If i keep sending different releases of an asp.net application to a
customer, how do i get him to report which version he is using at a given
point ? Can this be related to the versioning facility of asp.net ?
Thanks.