vote up 1 vote down star

After getting a input from the first page, I passed it in to the url using get method. In the next page I want to process it using jsp, but how do I get that parameter.

flag

18% accept rate

2 Answers

vote up 1 vote down check

You can get it off of the request object.

request.getParameter("<param name>");
link|flag
vote up -1 vote down

I just tried with a simp[le program but this is the output,

An error occurred at line: 5 in the jsp file: /jsp/emp/empdeletemodify.jsp Duplicate local variable request 4: <% 5: HttpServletRequest request; 6: request.getParameter("empid"); 7: %>

link|flag
The request object already exist on every jsp page so you don't have to declare it. Just use it. – timdisney Feb 20 at 5:11
Thanks buddy, it's working. – mani-vee Feb 20 at 5:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.