I have a textboxes and one dropdown on html whose value is getting saved to database on clicking save button but on searching for the value all textboxes and radio button are getting populated except the foloowing dropdown ..
<td align= "right" nowrap>
<html:select property="standard">
<html:option value="I">I</html:option>
<html:option value="II">II</html:option>
<html:option value="III">III</html:option> ...
and for populating the values i am using th following code..
stuform.setStandard((String)tempmap.get("STANDARD"));
Note: I have checked stuform.getStandard() value is there but it is not getting displayed on jsp.