I have a web server that is run by a third party. I don't have direct access to the server but I can deploy ASP.NET code to it. I want to detect if that server is running ASP.NET 4 / .NET 4 or not. What is the easiest way to do that? Is there an environmental property somewhere that would tell me? Or should I try to load a particular class that only exists in .NET 4?

link|improve this question

2  
How's about just asking the third party? – Paddy Sep 20 '10 at 13:23
You'd think that would be easy, wouldn't you? But I have reason to not trust anything they tell me. :-) – jkohlhepp Sep 20 '10 at 14:01
feedback

2 Answers

up vote 7 down vote accepted

How about printing System.Environment.Version?

link|improve this answer
That seems to work. I created a stand-alone test page with a <%= System.Environment.Version %> in it. My only question is, let's say I put that in a folder alongside an existing application with a web.config that was for .NET 3.5. What version would it show? – jkohlhepp Sep 20 '10 at 14:03
Nevermind that was a stupid question. It would show whatever version of ASP.NET that IIS virtual folder is configured as. – jkohlhepp Sep 20 '10 at 14:05
feedback

Your Answer

 
or
required, but never shown

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