Advertisement

05.24.2008 at 10:17AM PDT, ID: 23429964
[x]
Attachment Details

cannot retrieve request parameters

Asked by pothios in Java Server Pages (JSP), Java Servlets

Tags: jsp

anyone has any idea in wat situation will request.getParameter fail? so far it works for me for similar situation like the codes i posted below but this time, it keeps returning null of the select type. I use the exact same code in another jsp page and it works :/Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
/* servlet code */
request.getParameter("customer"); 
.....
....
 
 
/* jsp code */
<form metod="get" action="customer">
...
...
<select name="customer">
    <%
      	for (Iterator<Customer> it = c.iterator();it.hasNext();) {
      	Customer cus = (Customer )it.next();
        out.print("<option value=" + cus.getName() + ">" +cus.getName() + "</option>");
      		}
		%>
</select>
..
..
</form>
[+][-]05.24.2008 at 04:32PM PDT, ID: 21640596

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.24.2008 at 11:12PM PDT, ID: 21641648

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.24.2008 at 11:15PM PDT, ID: 21641649

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.24.2008 at 11:46PM PDT, ID: 21641690

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Java Server Pages (JSP), Java Servlets
Tags: jsp
Sign Up Now!
Solution Provided By: pothios
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628