Skip to main content
Inspiring
April 6, 2009
Question

post data

  • April 6, 2009
  • 3 replies
  • 2053 views

I have a drop down menu and I want to post the data from the drop down into the next page....can I do that?

Thanks

This topic has been closed for replies.

3 replies

dchardAuthor
Inspiring
April 6, 2009

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

BKBK
Community Expert
Community Expert
April 6, 2009

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#">