RE: creating an url return string

2000-12-18 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey Greg, Pretty simple unless I'm misunderstanding your question. On the message page: form action="yourloginactionpage.cfm" method="post" input type="hidden" name="returnurl" value="#cgi.script_name#?#cgi.querystring#" input type="text"

RE: creating an url return string

2000-12-18 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In the calling page, before you redirect to the authentication pages, setup returnURL like so: cfset returnURL = Cgi.Script_Name "?" Cgi.Query_String Now returnURL will contain anything that was passed after the question mark. Hope that helps,

RE: creating an url return string

2000-12-18 Thread Philip Arnold - ASP
I have an application that lets you browse a message board, however if you would like to post a response you need to log-in (in you arn't already). After you log-in, it takes a parameter passed through the url called returnURL and sends the user after the authentication to that url. The

RE: creating an url return string

2000-12-18 Thread Stephen Moretti
usebox.org -Original Message- From: Zachary Bedell [mailto:[EMAIL PROTECTED]] Sent: Monday, 18 December 2000 16:30 To: CF-Talk Subject: RE: creating an url return string -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In the calling page, before you redirect to the authentica

Re: creating an url return string

2000-12-18 Thread CF
http://www.newmediaone.net [EMAIL PROTECTED] (303)828-9882 - Original Message - From: Philip Arnold - ASP [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 18, 2000 9:56 AM Subject: RE: creating an url return string I have an application that lets you browse

RE: creating an url return string

2000-12-18 Thread JustinMacCarthy
Use the UrlEncodedFormat function Justin -Original Message- From: Greg Wolfinger [mailto:[EMAIL PROTECTED]] Sent: Monday, December 18, 2000 4:21 PM To: CF-Talk Subject: creating an url return string Hey Guys: I have an application that lets you browse a message board, however if

RE: creating an url return string

2000-12-18 Thread Cornillon, Matthieu
Greg, I'm a newbie, so please don't expect this answer to be elegant! ;-) Is the problem that you do not know for sure which "sub-"variables will appear within returnURL? If so, the first (ugly) solution that pops to mind is writing a quick routine to loop through the returnURL string,

Re: creating an url return string

2000-12-18 Thread Greg Wolfinger
000 11:37 AM Subject: RE: creating an url return string Greg, I'm a newbie, so please don't expect this answer to be elegant! ;-) Is the problem that you do not know for sure which "sub-"variables will appear within returnURL? If so, the first (ugly) solution that pops to mi