Which Version of IIS/ASP is Running
Published on: 30 August 2007 By: Ahsan Khan
System and Versions
Windows Server 2003: IIS 6.0 / ASP 3.0
Windows XP: IIS 5.1 / ASP 3.0
Windows 2000: IIS 5.0 / ASP 3.0
Windows NT 4.0/Windows 9x: Do a search for ASP.DLL on the system. Right click on asp.net and select Properties.
Click version tab:
IIS 3.0 shows 1.x
IIS 4.0 shows 2.x
IIS 5.0 shows 5.0.2195.x
IIS 5.1 shows 5.1.2600.x
IIS 6.0 shows 6.0.3790.x
Example:
response.write(Request.ServerVariables("SERVER_SOFTWARE"))
' returns "Microsoft-IIS/6.0" for IIS 6.0 and ASP 3.0
Links related to this article:
IIS/ASP.NET ServerVariables Collection List

View All Articles (Articles Archive)