Search this blog

Sunday, June 7, 2009

How to find out, what version of ASP.NET is installed in our Machine?

VB.NET:

Response.Write(System.Environment.Version.ToString())

C# Code:

Response.Write(System.Environment.Version.ToString());

No comments:

Post a Comment