Whatever message this page gives is out now! Go check it out!
DecodeFromURL(string)Parameter | Description |
string | Required. The encoded URL string to decode. |
<cfset string = "http://www.adobe.com/">
<cfset urlencoded = encodeforURL(string)>
<cfset urldecoded = decodefromUrl(urlEncoded)>
<cfoutput>
String: #string# <br/>
URL Encoded: #urlencoded#<br/>
URL Decoded: #urldecoded#<br/>
</cfoutput>