ASP.NET 4 URL limitations: why URL cannot contain any & character
- by stacker
http://site.com/page&character
This URL will return the following error:
A potentially dangerous Request.Path value was detected from the client (&).
I'm already put this in web.config:
<system.web>
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false">
...
How can I fix this error?