•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JSP section within the Web Development category of DaniWeb, a massive community of 392,071 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,217 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JSP advertiser: Lunarpages JSP Web Hosting
Views: 10012 | Replies: 1
![]() |
•
•
Join Date: Jun 2006
Posts: 1
Reputation:
Rep Power: 0
Solved Threads: 0
Hi, i want to know how to extract values from drop down box for processing in next field. In my file first drop down has list of countries taken from a database. I want to show location of that particular country in the other dropdown. The list of all locations is also in the same database. My code is as follows.
could anyone please give me a solution.
<html><body><form name="frm" method="post" action="update.jsp">
<b>COUNTRY:</b> </td>
<select name="coun" style="width: 246px" onChange ="this.frm2.submit();" ><option value="">Select</option>
<%
sql = dbconn.prepareStatement("select * from T500L order by LTEXT ");
results = sql.executeQuery();
while(results.next()){
String name = results.getString(2);
String id = results.getString(1);
%><option value="<%= name %>">
<% out.println(name); %>
</option>
<%} results.close(); sql.close(); %>
</select>
<b>LOCATION:</b> </td>
<select name="loc" style="width: 246px"><option value="">Select</option></select>
</form>
</body>
</html>
could anyone please give me a solution.
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb JSP Marketplace
Similar Threads
- Login page. JSP/Servlet (JSP)
- retrieve data from database into jsp(urgent)!!! (Oracle)
- Combo box and Ms-access (JSP)
- jsp code to send values to database (JSP)
- insert values to mysql database (JSP)
- how to call javabean from jsp page upon onChange event (JSP)
Other Threads in the JSP Forum
- Previous Thread: Type mismatch: cannot convert from int to ResultSet
- Next Thread: Problem with jsp include directive in iPlanet. Working in Tomcat.


Linear Mode