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.
HtmlEncode 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.
| Topic | Location |
|---|---|
| How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings | Building ASP .NET Web Applications |
| How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings | Building ASP .NET Web Applications |
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.