AssemblyInfo version display on WebPage

G

Guest

How do I retrieve the value of the [assembly: AssemblyVersion("1.1.*")] in
the AssemblyInfo.cs file so I can display the version of the app on the
webpage footer?

Thanks in advance.
 
P

Patrice

Try :
System.Reflection.Assembly.GetExecutingAssembly.FullName

If I remember you could also browse all assemblies (using ApplicationDomain)
and put all version information on an "admin" page...



Patrice
 
G

Guest

Hi Chris,

Try this (VB.NET)?

response.write _
(System.Reflection.Assembly. _
GetExecutingAssembly().GetName().Version.ToString)
 

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

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top