I am not sure about when using CFForms... but:

Don't you have to "select" the option?  

This is what I do:

<select name="AssocID" size="7" multiple>
<cfloop query="qryContentList">
<cfoutput>
<option value="#qryContentList.PageID#" <cfif listFind(YourList,
qryContentList.PageID,",")> selected</cfif>>#qryContentList.Title#</option>
</cfoutput>
</cfloop>
</select>       

Does that make sense?  Basically it is saying - if your ID is in the List of
IDs - then Select it.

- Nick



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4043
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to