Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Java
jsp page design problem.
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Chris, post: 3147058"] If he's willing to reload the page when the user clicks go, then no ajax required. Enclose your <select> tags in a form. Name the first one "department". Make the go button an <input type="submit"> tag. At the top of your page, add a snippet of java: <% String department = request.getParameter("department"); if (department == null) { // select the entire table here } else { // select the table where the dept field = the department param } // deal with section here %> [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Java
jsp page design problem.
Top