How to get IIS Version using Asp.Net?

 Posted by Vishalneeraj-24503 on 3/1/2015 | Category: ASP.NET Interview questions | Views: 1369 | Points: 40
Answer:

To find out which version of IIS hosts our web application,we can use SERVER_SOFTWARE from Request.ServerVariables collection as:-

Response.Write(Request.ServerVariables["SERVER_SOFTWARE"]);


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response