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 So how can i display that (Html enabled) content?
| |||||||||||||
feedback
|
|
If you experience that validateRequest="false" has no effect, it may be helped by setting this in web.config:
Which reverts to the behavior of the ASP.NET 2.0 request validation feature. | |||
feedback
|
|
if you want to display the html text. Place a asp:Literal contol on the form where you want to display the text. e.g.
| |||
|
feedback
|
|
If the TextBox is in a databound control (Repeater/GridView/etc.) and you bind the data on every postback the TextBox will lose it's contents, because all contents of the control are recreated. Use | |||
|
feedback
|