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

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

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 variables

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 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 the

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:27 AM Subject: Hide URL How can I

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- From: Cami

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 don't want

RE: Hide URL

2002-08-12 Thread Everett, Al
tested this and obviously you should be locking the Session variables. You might need to loop over the collection rather than using Duplicate(). -Original Message- From: Cami Lawson [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 11:24 AM To: CF-Talk Subject: RE: Hide URL

RE: Hide URL

2002-08-12 Thread Cornillon, Matthieu
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 information passed in a URL? I

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: cfif Len(CGI.QUERY_STRING) GT 0 cfset Session.UrlStruct=Duplicate(URL) cflocation url

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

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=marketingvar2=finance ..would become: www.mysite.com/mypage.cfm?ydt1=odunhwlqjydt2=ilqdqfh I encode the entire string for mine, so that the url looks like: www.mysite.com/mypage.cfm?3sd32s2sd22342d1234 or

RE: Hide URL

2002-08-12 Thread S . Isaac Dealey
, 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 information passed in a URL? I don't want the user to see the variables in the address line. TIA Cami

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=aaaB=bbbC=ccc I can't find t

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.com/mypage.cfm?A=aaaB=bbbC=ccc I can't find t