having a problem passing values submitted in a drop down list box.
on my form page the user selects their choices from the drop down, the the
user can choose to edit these choices on the next page, their original
choices shoud appear on the edit page, which follows:
<CFQUERY NAME="GetDetails" DATASOURCE="quickpoll">
SELECT pol_ID, pol_Question, pol_Category, pol_Status
FROM pol_Poll
WHERE pol_ID = #URL.PollID#
</CFQUERY>
<cfoutput query="getdetails">
<p>Status:
<select name="#pol_status#" size="1">
<option value="All">All</option>
<option value="New">New</option>
<option value="Active">Active</option>
<option value="Archive">Archive</option>
<option value="Hide">Hide</option>
</select>
Category:
<select name="#pol_Category#" size="1">
<option value="All">All</option>
<option value="sports">sports</option>
<option value="current affairs">current affairs</option>
<option value="general">General</option>
</select>
</cfoutput>
hope this makes sense, i want the choice selected to appear in the drop
down, and the user can then make the required change if necessary
thanks in advance
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.