Is it possible to move several fields form a form select.

I have a database of two fields: CatagoryID and CatagoryDesc.

I am building a select as follows:

 <SELECT NAME="CatagoryID" SIZE="7">
 <CFOUTPUT QUERY="GetCatagory">
  <option value='#CatagoryID#'> #CatagoryDescription# #CatagoryID#
 </CFOUTPUT>
 </SELECT>

I am then reloading the same template page where at the top I have:

<CFIF IsDefined("CatagoryID")>
 <CFINSERT DATASOURCE="SCENARIO" TABLENAME="ScenarioDetail" >
</CFIF>

What I really need to do is insert both the CatagoryID and the
CatagoryDescription,
but a SELECT only seems to be able to move one value.  Is there a way to
move the second value?

------------------------------------------------------------------------------
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.

Reply via email to