RE: Hide URL

2002-08-12 Thread S . Isaac Dealey
t looks like gobbledygook to anyone who > doesn't look further. > Hope this helps, > Matthieu > -Original Message- > From: Cami Lawson [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 9:27 AM > To: CF-Talk > Subject: Hide URL > How can I hide the

RE: Hide URL

2002-08-12 Thread Thane Sherrington
At 11:41 AM 8/12/02 -0400, Cornillon, Matthieu wrote: >www.mysite.com/mypage.cfm?var1=marketing&var2=finance > >..would become: > >www.mysite.com/mypage.cfm?ydt1=odunhwlqj&ydt2=ilqdqfh I encode the entire string for mine, so that the url looks like: www.mysite.com/mypage.cfm?3sd32s2sd22342d1234

Re: Hide URL

2002-08-12 Thread S . Isaac Dealey
> How can I hide the information passed in a URL? I don't want the user to > see the variables in the address line. If you set a persistent scope variable ( session, client, etc. ) to match each significant url variable, then you can use cflocation to relocate to the current page without the que

RE: Hide URL

2002-08-12 Thread Robertson-Ravo, Neil (REC)
encrypt them if you can. -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: 12 August 2002 16:39 To: CF-Talk Subject: RE: Hide URL You might try something like this: As of CF5, URL variables are stored as a structure. I haven't tested this and obvi

RE: Hide URL

2002-08-12 Thread Cornillon, Matthieu
lqdqfh Incredibly simple to decode, but looks like gobbledygook to anyone who doesn't look further. Hope this helps, Matthieu -Original Message- From: Cami Lawson [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 9:27 AM To: CF-Talk Subject: Hide URL How can I hide the info

RE: Hide URL

2002-08-12 Thread Everett, Al
- > From: Cami Lawson [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 11:24 AM > To: CF-Talk > Subject: RE: Hide URL > > > it is a redirect from an ASP application to CF app during a > login process > > -Original Message- > From: Alex [mailto:[EM

Re: Hide URL

2002-08-12 Thread ksuh
You can send a post request to CF from ASP, with form fields that have the values you need to send over. - Original Message - From: Cami Lawson <[EMAIL PROTECTED]> Date: Monday, August 12, 2002 7:27 am Subject: Hide URL > How can I hide the information passed in a URL? I d

RE: Hide URL

2002-08-12 Thread Cami Lawson
Client doesn't allow frames for their application. -Original Message- From: Brian Fox [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 10:25 AM To: CF-Talk Subject: RE: Hide URL Wouldn't a frameset hide the address bar of child frames? -Original Message-

Re: Hide URL

2002-08-12 Thread Paul Giesenhagen
A url variable is a url variable .. you will need to send it as a form or in a session variable Paul Giesenhagen QuillDesign - Original Message - From: "Cami Lawson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, August 12, 2002 8

Re: Hide URL

2002-08-12 Thread todd
hehehe, post-it note over the browser URL works well. :) That's funny... :) ~Todd On Mon, 12 Aug 2002, Alex wrote: > send them as a form variable, session var, postit note, cookie > > On Mon, 12 Aug 2002, Cami Lawson wrote: > > > How can I hide the information passed in a URL? I don't want

RE: Hide URL

2002-08-12 Thread Cami Lawson
it is a redirect from an ASP application to CF app during a login process -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 10:24 AM To: CF-Talk Subject: Re: Hide URL send them as a form variable, session var, postit note, cookie On Mon, 12 Aug

RE: Hide URL

2002-08-12 Thread Brian Fox
Wouldn't a frameset hide the address bar of child frames? -Original Message- From: Cami Lawson [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 6:27 AM To: CF-Talk Subject: Hide URL How can I hide the information passed in a URL? I don't want the user to see the va

Re: Hide URL

2002-08-12 Thread Alex
send them as a form variable, session var, postit note, cookie On Mon, 12 Aug 2002, Cami Lawson wrote: > How can I hide the information passed in a URL? I don't want the user to > see the variables in the address line. > > TIA > Cami > >

Hide URL

2002-08-12 Thread Cami Lawson
How can I hide the information passed in a URL? I don't want the user to see the variables in the address line. TIA Cami __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusi

RE: Thread on how to hide URL parameters

2000-07-27 Thread Philip Arnold - ASP
> There was a thread (actually several) on how to hide URL parameters > in a link, using "/" as a separator... > > the syntax was somethong like: > http://www.mydomain.com/mypage.cfm/?A=aaa/&B=bbb/&C=ccc > > instead of: > http://www.mydomain.co

Thread on how to hide URL parameters

2000-07-27 Thread Dick Applebaum
There was a thread (actually several) on how to hide URL parameters in a link, using "/" as a separator... the syntax was somethong like: http://www.mydomain.com/mypage.cfm/?A=aaa/&B=bbb/&C=ccc instead of: http://www.mydomain.com/mypage.cfm?A=aaa&B=bbb&am