I have fallen foul of the ASP.New Request Validation breaking change.
I have a page with a LinkButton (not within an update panel) - also on the page is a hidden field (created with ScriptManager.RegisterHiddenField) that contains text with the dreaded '<' and '>' characters. So nothing too idiosyncratic.
On moving to .Net 4 clicking on the link button raises a HttpRequestValidationException despite the fact that the page specifies ValidateRequest="false".
The well documented solution is to change the web.config
<httpRuntime requestValidationMode="2.0" />
but I think that this is a bit of a sledge hammer approach - after all I think that the change in Asp.Net 4.0 is a sensible one.
I was wondering if anyone had a "nicer" solution - i.e. a way of keeping the 4.0 request validation mode but somehow negating the problems I am having with this page.