How To Find Which Version of .NET Framework Is Used?
To find out which version your web application currently uses, you can use code like this:
[ C# ]
string NetVersion = System.Environment.Version.ToString();
[ VB.NET ]
Dim NetVersion As String = System.Environment.Version.ToString()
Related articles:
1. JW FLV Player ASP.NET Control - C# Source Code
2. Site Maps In ASP.NET
3. Can I Pass QueryString Variable From Classic ASP To ASP.NET?
Copyright © 2002-2008 Bean Software. All rights reserved.