System.Web.UI.HtmlTextWriter.WriteUrlEncodedString Method

Writes the specified string, encoding it according to URL requirements.

Syntax

protected void WriteUrlEncodedString (string text, bool argument)

Parameters

text
The string to encode and write to the output stream.
argument
true to encode the string as a part of the parameter section of the URL; false to encode the string as part of the path section of the URL.

Remarks

The HtmlTextWriter.WriteUrlEncodedString(string, bool) method encodes characters that could be considered URL delimiters (dependent on the setting of argument) into strings of the form %xx, if the ASCII code is less than 128; otherwise, %uxxxx, where x is a hexadecimal digit.

The HtmlTextWriter.WriteEncodedUrl(string) and HtmlTextWriter.WriteEncodedUrlParameter(string) methods use the HtmlTextWriter.WriteUrlEncodedString(string, bool) method as a utility method.

Requirements

Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0