version of ASP.NET


How can I find out what version of ASP.NET is running on my computer?

try this

Code:

<%
Response.Write("The .NET version is " & System.Environment.Version.ToString() )
%>