Simple(?) question...

W

Wardeaux

Hey all,
I simply want to display the AssemblyVersion number set in my
AssembyInfo.vb on a web page so I can see what version of my assembly I'm
running from a web page... Doc only helps when you know where to start
looking...
many thanks!
wardeaux
 
S

Shawn

Something like this?

Dim assemblyVer As System.Reflection.AssemblyName =
System.Reflection.Assembly.GetExecutingAssembly.GetName
Response.Write(assemblyVer.Version)

Shawn



Hey all,
I simply want to display the AssemblyVersion number set in my
AssembyInfo.vb on a web page so I can see what version of my assembly I'm
running from a web page... Doc only helps when you know where to start
looking...
many thanks!
wardeaux
 

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