How to Check IIS Version on Website?
23 July 2009
1,289 views
No Comment
How do you check the version of IIS on the server of a website?
Simply put this on the code behind of a page:
Response.Write(Request.ServerVariables["SERVER_SOFTWARE"]);
When you view the page it should show you something like this:
Microsoft-IIS/6.0
Where 6.0 is the version.










Leave your response!