RE: URL var encoding/decoding in CF6.1

2006-08-21 Thread Ben Forta
Use Encrypt() and Decrypt() -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED] Sent: Monday, August 21, 2006 11:08 AM To: CF-Talk Subject: URL var encoding/decoding in CF6.1 Hey gang, I'm looking for a good, simple solution to encode one or more URL variables, pass them

RE: URL var encoding/decoding in CF6.1

2006-08-21 Thread Ben Nadel
What about: UrlEncodedFormat( Encrypt( URL.somevalue, my_key ) ) Then UrlDecode( Decrypt( URL.somevalue, my_key ) ) ... Ben Nadel www.bennadel.com -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED] Sent: Monday, August 21, 2006 11:08 AM To:

Re: URL var encoding/decoding in CF6.1

2006-08-21 Thread Scott Weikert
The problem with Encrypt/Decrypt, in my situation, is I want to use this to pass some constant vars in the URL without them being obvious to the end user. And Encrypt tends to spit out lots of non-alphanumeric characters. Using URLEncodedFormat() on this works, but then the string in question

RE: URL var encoding/decoding in CF6.1

2006-08-21 Thread Loathe
Check out urlEncrypt() on cflib.org -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED] Sent: Monday, August 21, 2006 11:08 AM To: CF-Talk Subject: URL var encoding/decoding in CF6.1 Hey gang, I'm looking for a good, simple solution to encode one or more URL

Re: URL var encoding/decoding in CF6.1

2006-08-21 Thread James Holmes
Can you use session variables instead? On 8/21/06, Scott Weikert [EMAIL PROTECTED] wrote: The problem with Encrypt/Decrypt, in my situation, is I want to use this to pass some constant vars in the URL without them being obvious to the end user. And Encrypt tends to spit out lots of