Whatever message this page gives is out now! Go check it out!
URLEncodedFormat(string [, charset ])Parameter | Description |
string | A string or a variable that contains one |
charset | The character encoding in which the string is encoded. Optional.The following list includes commonly used values:
|
<h3>URLEncodedFormat Example</h3>
<cfif IsDefined("url.myExample")>
<p>The url variable url.myExample was passed from the previous link ...
its value is:
<br><b>"<cfoutput>#url.myExample#</cfoutput>"</b>
</cfif>
<p>This function returns a URL encoded string.
<cfset s = "My url-encoded string has special characters & other stuff">
<p> <A HREF = "urlencodedformat.cfm?myExample=<cfoutput>#URLEncodedFormat(s)#
</cfoutput>">Click me</A>