Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypt in URL

Status
Not open for further replies.

evergreean43

Technical User
May 25, 2006
165
US
I can encrypt the field value in url but was wondering how I can also encrypt the field name in the url?
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#")#>
 
I haven't done it but I'm quite sure you can encrypt the whole string.

Cheers,

Bluetone
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top