Re: hiding url variables

2007-02-01 Thread Richard White
thanks for all your replies. I think your right i will have to use hidden fields and form posts as much as possible. and when i need to use the URL then i will use the encrypt / decrypt link that was added in the replies. this is very useful, thanks very much for all your help

Re: hiding url variables

2007-01-28 Thread Scott Pinkston
about instead of appending the variable and using a hidden field. Terry -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 3:44 PM To: CF-Talk Subject: hiding url variables Hi, i have a cfm page that uses a javascript function to append

Re: hiding url variables

2007-01-28 Thread John C. Bland II
/Securing_your_applications_URL_variables.cfm Might help. How about instead of appending the variable and using a hidden field. Terry -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 3:44 PM To: CF-Talk Subject: hiding url variables Hi, i

hiding url variables

2007-01-27 Thread Richard White
Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url variable set to collect the variable in the receiving cfm page. however, the variable data is being displayed in the address bar in the browser. is there anyway to hide the

Re: hiding url variables

2007-01-27 Thread Doug Brown
27, 2007 4:44 PM Subject: hiding url variables Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url variable set to collect the variable in the receiving cfm page. however, the variable data is being displayed in the address bar

Re: hiding url variables

2007-01-27 Thread Qasim Rasheed
. - Original Message - From: Richard White [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Saturday, January 27, 2007 4:44 PM Subject: hiding url variables Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url

Re: hiding url variables

2007-01-27 Thread Ben Doom
Off the top of my head, you have two options. 1) A form post. This pushes the information in the request header instead of the URL. 2) A redirect. Use cflocation or similar to move from your receiving page to the display page. HTH. --Ben Richard White wrote: Hi, i have a cfm page that

RE: hiding url variables

2007-01-27 Thread Terry Troxel
How about instead of appending the variable and using a hidden field. Terry -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 3:44 PM To: CF-Talk Subject: hiding url variables Hi, i have a cfm page that uses a javascript function