+4  A: 

Add this to system.web section of your web.config:

<httpRuntime requestValidationMode="2.0" />
Necros
+3  A: 

Yeah .NET4 upped the security a bit. You can put it back to .NET2 mode in web.config like this:

<system.web>
  <httpRuntime requestValidationMode="2.0"/>
</system.web>
BritishDeveloper