Using redirect instead of forward

T

teser3

--------------------------------------------------------------------------------
In Tomcat 4.1.27 servlet I am using RequestDispatcher type to forward
a message and get it in JSP. How can I do the same using redirect
instead?

Here is what I have -

Servlet:
request.setAttribute("MyMessage", "Hello");RequestDispatcher
requestDispatcher = request.getRequestDispatcher("/
toPage.jsp");requestDispatcher.forward(request, response);

toPage.jsp
out.println(request.getAttribute("MyMessage"));



Now using redirect would this be the best way?
String myMessage =
"Hello";session.setAttribute("myMessage",myMessage);response.sendRedirect("/
toPage.jsp");

toPage.jsp
out.println(session.getAttribute("MyMessage"));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,534
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top