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(System::String ^ url);
public virtual void WriteEncodedUrl (string url);
abstract member WriteEncodedUrl : string -> unit
override this.WriteEncodedUrl : string -> unit
Public Overridable Sub WriteEncodedUrl (url As String)

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();
' 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

See also