How can you turn off request validation in IIS Express?
See the question and my original answer on StackOverflowMaybe you could try to change the web.config like this:
<system.web>
<httpRuntime requestValidationMode="2.0" />
</system.web>
(more info here: http://www.asp.net/learn/whitepapers/aspnet4/breaking-changes)