evergreean43
Technical User
I can encrypt the field value in url but was wondering how I can also encrypt the field name in the url?
Destination Processing Page:
Code:
<cfset key = "mystring">
<a href='destination.cfm?cityID=#URLEncodedFormat(Encrypt(thequery.cityID, "#key#"))#'>City</a>
Destination Processing Page:
Code:
<cfset key = "mystring">
<cfset cityID = #Decrypt(URL.cityID, "#key#")#>