Search code examples
c#htmlasp.nethtml-escape-charactersresponse.write

How to make Response.Write Display special character like "<",">"


I want to use Response.Write to display some text on the screen using ASP.NET I created a variable

String s = "There is some <hidden text> which is not visible";
Response.Write(s);

What I found is when the browser only display "There is some which is not visible" any text written in between symbols '<'......'>' is neglected by the browser.

How can I display entire text?

Please advice.


Solution

  • Use HTML Encoding

    Server.HtmlEncode("There is some <hidden text> which is not visible");