HtmlTextWriter.WriteEncodedUrl(String) Method

Definition

Encodes the specified URL, and then writes it to the output stream. The URL might include parameters.

public virtual void WriteEncodedUrl (string url);

Parameters

url
String

The URL string to encode and write to the output stream.

Examples

The following code example shows how to use the WriteEncodedUrl method, which generates the following output:

http://localhost/Sample%20Folder/Sample%20%2b%20File.txt

// Assign a value to a string variable
// and URL-encode it to a page.
url = "http://localhost/SampleFolder/Sample + File.txt"; 
writer.WriteBreak();
writer.WriteEncodedUrl(url);
writer.WriteBreak();

Remarks

The WriteEncodedUrl method encodes the string in the url parameter in accordance with the specification for URL encoding. The parameters that follow the question mark (?) delimiter are not encoded.

Applies to

Ürün Sürümler
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also