In order to display some special text (like html data) I put validaterequest="false" in my aspx page. But unfortunatly I'm not even get that text to display.
So how can i display that (Html enabled) content?
In order to display some special text (like html data) I put validaterequest="false" in my aspx page. But unfortunatly I'm not even get that text to display.
So how can i display that (Html enabled) content?
If you experience that validateRequest="false" has no effect, it may be helped by setting this in web.config:
<system.web>
<httpRuntime requestValidationMode="2.0" />
</system.web>
Which reverts to the behavior of the ASP.NET 2.0 request validation feature.