HtmlTextWriter.EncodeUrl Method (String)

 

Performs minimal URL encoding by converting spaces in the specified URL to the string "%20".

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

member EncodeUrl : 
        url:string -> string

Parameters

url
Type: System.String

A string containing the URL to encode.

Return Value

Type: System.String

A string containing the encoded URL.

URL encoding of a character consists of a percent symbol (%), followed by the two-digit hexadecimal representation (case-insensitive) of the ISO-Latin code point for the character. The hexadecimal representation of a space is 20.

The following code example demonstrates how to call the EncodeUrl method to convert any spaces in the URL that is passed as a parameter in an AddAttribute method call.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: