Hi All,
 
I am using the html option tag embedded within the html select tag to
select a value from a drop down list as follows:
 
<html:select property="title">
        
        <html:option value="Mr">Mr</html:option>
        <html:option value="Mrs">Mrs</html:option>
        
</html:select>
 
This works fine and I can save the correct value to the database.  The
question I have is how do I display the same option tag when updating
the user and the details are returned from a database.  So in plain
English after the user has saved the client to the db he then wants to
update the record.  A search is done but how do I display on the JSP
page the selected option with the option of seleting something else from
the drop down list.
 
Thanks in advance

Reply via email to