Getting the version of the .NET Framework in VB.NET

Does anyone know the code <%= %> or Response.Write() to get the .Net version of my web application?

+3
source share
2 answers

System.Environment.Version will give you this.

+12
source
 System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion 
0
source

All Articles