Re: Populating a drop down list
Posted By:
Arun_Bharathan
Posted On:
Wednesday, March 27, 2002 12:09 PM
Make sure you have SELECTED attribute to the OPTION element for which you want as a default(initial) value.
Re: Populating a drop down list
Posted By:
Dan_Waldner
Posted On:
Wednesday, March 27, 2002 12:06 PM
I've run into this problem as well. This is how I solved it:
For the drop down box, there's a property ( I believe its SELECTED) that you can insert in the OPTION tag in order to make that the default. Just do a statement similar to this one:
<%
String value;
//Go get value for drop box here
%>