Can you programatically detect if the Development server in Visual Studio is used instead of IIS?

link|improve this question

79% accept rate
1  
Is there a specific reason to do so? If you are merely trying to separate out environments, perhaps compilation flags would be better (i.e. DEBUG etc) – rifferte Jan 4 '11 at 19:11
feedback

1 Answer

up vote 1 down vote accepted

In Visual Studio 2010, Request.ServerVariables("SERVER_SOFTWARE") will return Nothing (null) for the Development Server, and "Microsoft-IIS/7.5" for my Win7 Pro IIS/VS2010 installation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.