-
1. Re: post data
injun [576871] Apr 6, 2009 11:02 AM (in response to dchard)All form data will be sent to any specified in the action="" page.
-
2. Re: post data
BKBK Apr 6, 2009 11:09 AM (in response to dchard)formPage.cfm
<form action="actionPage.cfm" method="post">
<SELECT NAME="flavor">
<OPTION value = "" SELECTED>Select flavor</OPTION >
<OPTION VALUE="vanilla" >Vanilla</OPTION >
<OPTION VALUE="strawberry">Strawberry</OPTION >
<OPTION VALUE="rum_raisin">Rum and Raisin</OPTION >
<OPTION VALUE="peach_orange">Peach and Orange</OPTION >
</SELECT>
<input ty
pe="Submit" value="send" name="sbmt">
actionPage.cfm
<cfdump
var="#form#">
-
3. Re: post data
dchard Apr 6, 2009 12:31 PM (in response to dchard)I'm sorry my question is not complete....I mean I want to post the data from the drop down into the next page without using submit button
-
-
5. Re: post data
ilssac Apr 6, 2009 12:41 PM (in response to dchard)What do want use, if not the submit button.
P.S.,
I'm not liking a lot about this new Forum yet.
-
6. Re: post data
dchard Apr 6, 2009 12:55 PM (in response to ilssac)that I don't know...that's why I'm asking if it's possible and how. But I'm thinking is it possible to store the data on a session variable thru onclick? So that when a user pick a choice on the drop down then it will store in the session.
-
7. Re: post data
injun [576871] Apr 6, 2009 12:56 PM (in response to dchard)You can use for it AJAX - jQuery or ExtJS js-libraries.
-
8. Re: post data
dchard Apr 6, 2009 2:43 PM (in response to injun [576871])can you give me a walkthrough on that, good reference?
thanks
-
9. Re: post data
injun [576871] Apr 6, 2009 3:08 PM (in response to dchard)I think you need read something like this: http://www.365labs.net/cf_jquery/jquery_coldfusion_quickstart.htm


