> From: Gonzalez, Sergio Eduardo [mailto:[EMAIL PROTECTED] 
> I have to get the description  from a html:select  example  in html 
> <select name ="xx" >
> <option value="z">zzzzz</option>
> </select>
> how can I do to get the "zzzzz" value ???  ( using struts ) 

Make the tag look like this instead:
<select name ="xx" >
  <option value="zzzzz">zzzzz</option>
</select>

It's the 'value' that will get sent to the server, not the displayed
text.

-- 
Wendy Smoak
Application Systems Analyst, Sr.
ASU IA Information Resources Management 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to