Whatever message this page gives is out now! Go check it out!
DecodeforHTML(string)Parameter | Description |
string | Required. The encoded string to decode. |
<cfif isDefined("form.submit")>
<b>
Output:<cfoutput >#DecodeForHTML(form.encodedUserName)#</cfoutput>
</b>
<cfelse>
<cfset form.username=""/>
</cfif>
<cfform>
<cfinput name="encodedUserName" type="text" value="#form.encodedUserName#">
<cfinput name="submit" type="submit" value="Submit">
</cfform>