get this value from structure
HI i want to preselect my multiselect box from the structure that i am getting
| CATEGORY | one,two |
above is the sturucte key and values(one,two)
<select name="CATEGORY" multiple="multiple">
<option value="#getmyvalue.Value#" <cfif StructKeyExists(attributes,"CATEGORY")><cfif #attributes["CATEGORY"]# eq "#getmyvalue.Value#">selected</cfif></cfif>>#getmyvalue.Value#</option>
</select>
what i want is to pre select those two values if that above struct value exists.
