HttpServerUtility.HtmlDecode Method (String)
Decodes an HTML-encoded string and returns the decoded string.
Assembly: System.Web (in System.Web.dll)
Parameters
- s
- Type: System.String
The HTML string to decode.
URL encoding ensures that all browsers will correctly transmit text in URL strings. Characters such as a question mark (?), ampersand (&), slash mark (/), and spaces might be truncated or corrupted by some browsers. As a result, these characters must be encoded in <a> tags or in query strings where the strings can be re-sent by a browser in a request string.
HtmlDecode decodes text that has been transmitted to the server.
HtmlDecode is a convenient way to access the HttpUtility.HtmlDecode method at run time from an ASP.NET application. Internally, HtmlDecode uses HttpUtility.HtmlDecode to decode strings.
The following example contains the function LoadDecodedFile, which decodes the data from a file and copies it into one string.
<%@ PAGE LANGUAGE = "C#" %> <%@ IMPORT NAMESPACE = "System.IO" %> <html xmlns="http://www.w3.org/1999/xhtml"> <script runat ="server"> String LoadDecodedFile(String file) { String DecodedString = ""; FileStream fs = new FileStream(file, FileMode.Open); StreamReader r = new StreamReader(fs); // Position the file pointer at the beginning of the file. r.BaseStream.Seek(0, SeekOrigin.Begin); // Read the entire file into a string and decode each chunk. while (r.Peek() > -1) DecodedString += Server.HtmlDecode(r.ReadLine()); r.Close(); return DecodedString; } </script> <head runat="server"> <title>HttpServerUtility.HtmlDecode Example</title> </head> <body></body> </html>
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.