I set the Target Framework for a Web Application to .Net Framework 3.5, but when I get a YSOD, the "Version information" at the bottom of the page says "Microsoft .NET Framework Version:2.0.50727.5448; ASP.NET Version:2.0.50727.5420"

I've replicated this on a File > New Web Application as well, so I can conclude that I'm not doing anything out of line in my code.

Does anyone know why this is, or how to fix it?

link|improve this question

53% accept rate
feedback

3 Answers

up vote 2 down vote accepted

This is the expected behavior. .NET 3.5 is just .NET 2.0 SP2 with some new assemblies.

link|improve this answer
feedback

There is no ASP.Net 3.5.

.Net 3.5 is just a bunch of new DLLs, plus new versions of C# and VB.Net.
It's the same runtime.

link|improve this answer
2  
That is to say that .NET Frameworks 3.0 and 3.5 were really just extension libraries for 2.0, whereas for instance .NET Framework 4.0 is a completely new set of libraries. – lthibodeaux Dec 19 '11 at 22:22
feedback

In IIS change the application pool to target Framework 3.5

link|improve this answer
1  
There is no "Framework 3.5" choice for an IIS Application Pool. Look at the previous answers. – Peter Bromberg Dec 19 '11 at 22:58
-1: there is no such choice – John Saunders Dec 20 '11 at 17:53
Yes, I mistook the target Framework of WebConfig with ASP version in IIS, apologies. – Piyey Dec 23 '11 at 18:07
feedback

Your Answer

 
or
required, but never shown

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