HttpServerUtility::UrlEncode Method (String, TextWriter)
URL-encodes a string and sends the resulting output to a TextWriter output stream.
Assembly: System.Web (in System.Web.dll)
Parameters
- s
- Type: System::String
The text string to encode.
- output
- Type: System.IO::TextWriter
The TextWriter output stream that contains the encoded string.
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.
UrlEncode is a convenient way to access the HttpUtility::UrlEncode method at run time from an ASP.NET application. Internally, UrlEncode uses HttpUtility::UrlEncode 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.