
i have 1 combobox in jsp which is filled with value from sql db on load of form
ResultSet re = s.executeQuery("select distinct From1 from station");
%>
<select>
<%
while (re.next()) {
String un = re.getString("From1");
%>
<option value="<%= un%>"><%= un%></option>
<%
}
%>
</select>
i have another combobox below it, i want it to be filled on the basis of selected value of 1st combobox...plz help with code
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.