I am new to Javascript and I am having problems with loading a pull
down menu.
I get this error:
javax.servlet.S ervletException : No data found
It will list the items just fine if I just list the items without
using the select & option tags. I would like to know why I am getting
an error with the following statement:
<select size="1" name="org">
<% while (rs.next()) { %>
<option value="<%=rs.ge tString("ORG_CO DE")%>">
<%=rs.getString ("ORG_CODE") %>
</option>
<% } %>
</select>
Thank you.
-jptu
down menu.
I get this error:
javax.servlet.S ervletException : No data found
It will list the items just fine if I just list the items without
using the select & option tags. I would like to know why I am getting
an error with the following statement:
<select size="1" name="org">
<% while (rs.next()) { %>
<option value="<%=rs.ge tString("ORG_CO DE")%>">
<%=rs.getString ("ORG_CODE") %>
</option>
<% } %>
</select>
Thank you.
-jptu
Comment