Version tracking

  • Thread starter Ken Cox [Microsoft MVP]
  • Start date
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.
 
C

chak

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top