HttpServerUtility.HtmlEncode Method (String)
HTML-encodes a string and returns the encoded string.
Assembly: System.Web (in System.Web.dll)
Parameters
- s
- Type: System.String
The text string to encode.
HTML encoding makes sure that text is displayed correctly in the browser and not interpreted by the browser as HTML. For example, if a text string contains a less than sign (<) or greater than sign (>), the browser would interpret these characters as the opening or closing bracket of an HTML tag. When the characters are HTML encoded, they are converted to the strings < and >, which causes the browser to display the less than sign and greater than sign correctly.
The HtmlEncode method is a convenient way to access the HttpUtility.HtmlEncode method at run time from an ASP.NET application. Internally, HtmlEncode uses HttpUtility.HtmlEncode to encode strings.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
using System.Web;
.
.
.
string TestString = "This is a <Test String>.";
string EncodedString1 = HttpContext.Current.Server.HtmlEncode(TestString);
// the above line or the two lines below
HttpServerUtility Server = HttpContext.Current.Server;
string EncodedString2 = Server.HtmlEncode(TestString);
- 12/30/2010
- Reese Bird
- 12/30/2010
- Reese Bird