Click to See Complete Forum and Search --> : Validating with servlets


Jon723
11-16-2003, 05:24 PM
Can someone tell me the correct way to get the value of a select box of a form when using servlets. I'm not sure what to put in the response.getParameter( ) method for the select box.

Khalid Ali
11-17-2003, 06:27 AM
to get value from the HTML form you don't use response object, rather it will be
request.getParameter("select_box_name");