Add this to system.web
section of your web.config:
<httpRuntime requestValidationMode="2.0" />
Necros
2010-08-19 15:47:44
Add this to system.web
section of your web.config:
<httpRuntime requestValidationMode="2.0" />
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>