How do you know what version of IIS is being used by server..I mean can a client know what version of IIS is being used? or how can I know what version of IIS is being used by my hosting company?

Questions by mak1600

Showing Answers 1 - 3 of 3 Answers

Shailesh

  • Apr 11th, 2006
 

Response.Write Request.ServerVariables ("SERVER_SOFTWARE")

  Was this answer useful?  Yes

Hymavathi

  • Sep 21st, 2006
 

correct syntax is as follows

response.write(Request.ServerVariables("SERVER_SOFTWARE")) 

  Was this answer useful?  Yes

SREEJESH

  • Jun 19th, 2007
 

The  syntax is

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

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions