[ACFUG Discuss] Pass through Variables: Question

2006-05-31 Thread Anthony L. Mathis
Would anyone have an in sight on how to pass your cfform values to a
response page and then have it forward it to another action page based on a
condition. I've searched high and low to no avail. I thought about maybe a
auto submit, but I've heard bad things about doing that and plus I don't
know how to make that happen in cf only in JS.

Example of what I have follows: ? means I don't know. 

Form.cfm











Response.cfm


?





?


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006
 



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-





RE: [ACFUG Discuss] Pass through Variables: Question

2006-05-31 Thread Ben Bloodworth
You could use a cfinclude instead of trying to redirect to another page.
Alternatively, you could post the form to a new page using cfhttp. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony L.
Mathis
Sent: Wednesday, May 31, 2006 4:14 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] Pass through Variables: Question

Would anyone have an in sight on how to pass your cfform values to a
response page and then have it forward it to another action page based on a
condition. I've searched high and low to no avail. I thought about maybe a
auto submit, but I've heard bad things about doing that and plus I don't
know how to make that happen in cf only in JS.

Example of what I have follows: ? means I don't know. 

Form.cfm

  

 




Response.cfm


?





?


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006
 



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-





Re: [ACFUG Discuss] Pass through Variables: Question

2006-05-31 Thread Dean H. Saxe
This is a great way for people to manipulate those hidden form field  
variables.


Store them in the session scope and retrieve them when you process  
the form collection.


-dhs

Dean H. Saxe, CEH
[EMAIL PROTECTED]
"What is objectionable, what is dangerous about extremists is not  
that they are extreme, but that they are intolerant."

-- Robert F. Kennedy, 1964

Find out about my Hike for Discovery at www.fullfrontalnerdity.com/hfd

On May 31, 2006, at 4:46 PM, Mike Staver wrote:

What I do is set up an HTML form, I'm sure you could use CFform as  
well though.  I would just put this inside one of your cfif  
statements:










I then use a script on the same page inside the cfif:


document.whatever.submit();



Yet all of this happens in a browser and not server side, so there  
is that extra communication with the end user's browser...


Anthony L. Mathis wrote:

Would anyone have an in sight on how to pass your cfform values to a
response page and then have it forward it to another action page  
based on a
condition. I've searched high and low to no avail. I thought about  
maybe a
auto submit, but I've heard bad things about doing that and plus I  
don't

know how to make that happen in cf only in JS.
Example of what I have follows: ? means I don't know. Form.cfm





Response.cfm

?


?



--

-Mike Staver
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]


-
To unsubscribe from this list, manage your profile @ http:// 
www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-







-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-





Re: [ACFUG Discuss] Pass through Variables: Question

2006-05-31 Thread Mike Staver
What I do is set up an HTML form, I'm sure you could use CFform as well 
though.  I would just put this inside one of your cfif statements:










I then use a script on the same page inside the cfif:


document.whatever.submit();



Yet all of this happens in a browser and not server side, so there is 
that extra communication with the end user's browser...


Anthony L. Mathis wrote:

Would anyone have an in sight on how to pass your cfform values to a
response page and then have it forward it to another action page based on a
condition. I've searched high and low to no avail. I thought about maybe a
auto submit, but I've heard bad things about doing that and plus I don't
know how to make that happen in cf only in JS.

Example of what I have follows: ? means I don't know. 


Form.cfm











Response.cfm


?





?




--

-Mike Staver
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-





RE: [ACFUG Discuss] Pass through Variables: Question

2006-05-31 Thread Anthony L. Mathis
Thanks for all the responses..I will give them a try tomorrow. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Bloodworth
Sent: Wednesday, May 31, 2006 4:29 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Pass through Variables: Question

You could use a cfinclude instead of trying to redirect to another page.
Alternatively, you could post the form to a new page using cfhttp. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony L.
Mathis
Sent: Wednesday, May 31, 2006 4:14 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] Pass through Variables: Question

Would anyone have an in sight on how to pass your cfform values to a
response page and then have it forward it to another action page based on a
condition. I've searched high and low to no avail. I thought about maybe a
auto submit, but I've heard bad things about doing that and plus I don't
know how to make that happen in cf only in JS.

Example of what I have follows: ? means I don't know. 

Form.cfm

  

 




Response.cfm


?





?


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006
 



-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-




-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-



--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006
 



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-





Re: [ACFUG Discuss] Pass through Variables: Question

2006-05-31 Thread Douglas Knudsen

since you are using Flash based forms, you could also use ActionScript
to handle stuff like this too.
http://www.asfusion.com/blog/archives/category/cfform has abit of
info.

DK

On 5/31/06, Anthony L. Mathis <[EMAIL PROTECTED]> wrote:

Thanks for all the responses..I will give them a try tomorrow.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Bloodworth
Sent: Wednesday, May 31, 2006 4:29 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] Pass through Variables: Question

You could use a cfinclude instead of trying to redirect to another page.
Alternatively, you could post the form to a new page using cfhttp.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony L.
Mathis
Sent: Wednesday, May 31, 2006 4:14 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] Pass through Variables: Question

Would anyone have an in sight on how to pass your cfform values to a
response page and then have it forward it to another action page based on a
condition. I've searched high and low to no avail. I thought about maybe a
auto submit, but I've heard bad things about doing that and plus I don't
know how to make that happen in cf only in JS.

Example of what I have follows: ? means I don't know.

Form.cfm

  

 




Response.cfm


?





?


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006




-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-




-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists Archive @
http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-



--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 5/29/2006




-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-







--
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by www.fusionlink.com
-