URLDecode

The URLDecode method removes URL encoding, including escape characters, from a specified string.

Syntax

Server.URLDecode( string )
 

Parameters

string
Specifies the encoded string to decode.

Example

The following script

<%= Server.URLDecode("http%3A%2F%2Fwww%2Emicrosoft%2Ecom%2F")) %>
 

produces output in the document of

http://www.microsoft.com/

Applies To

Server Object

See Also

HTMLEncode
URLEncode