Home Answers Viewqa JSP-Servlet How to carry multiple values from a Servlet to a JSP?

 
 


Munikumar
How to carry multiple values from a Servlet to a JSP?
1 Answer(s)      2 years and 3 months ago
Posted in : JSP-Servlet

By using the below code I am able to carry the username to a JSP (single value).

----response.sendRedirect("index.jsp?uname="+username);----

But I want multiple values needs to be carried from my servlet to a JSP. How do I do that?

View Answers

February 28, 2011 at 3:21 PM


You can use the following code:

response.sendRedirect("/examples/jsp/index.jsp?uname="+username+"&&pass="+password);









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.