954,198 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How to redirect a page in JSP

hi all.

I have a form in page1.jsp. the action for that form submit is in page2.jsp

so I want to just come back to the page1.jsp after processing the request.(reload the first page again)

so in page2.jsp, how can i redirect the display page to the page1.jsp


here I tried to used the "

rpjanaka
Junior Poster in Training
69 posts since Sep 2006
Reputation Points: 10
Solved Threads: 0
 

instead of JSP use servlet, so from page1.jsp send form to servlet where you validate and process the form and after that you can get back to page1.jsp
Question is why do you want to go back? It is because of error which is OK, or some other reason which is unclear to me...

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
 
nikkiH
Junior Poster in Training
79 posts since Dec 2006
Reputation Points: 13
Solved Threads: 4
 

NEVER use JSP scriptlets. They are the single worst part of the system and should never have been introduced.

jwenting
duckman
Team Colleague
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
 

Please share the non-scriplet way for us uneducated folks.

nikkiH
Junior Poster in Training
79 posts since Dec 2006
Reputation Points: 13
Solved Threads: 4
 

here i wanna add some data to the database and show the first page again to add another data.

so the request processing task is done in the page2.jsp . the form is included in page1.jsp

rpjanaka
Junior Poster in Training
69 posts since Sep 2006
Reputation Points: 10
Solved Threads: 0
 
here i wanna add some data to the database and show the first page again to add another data. so the request processing task is done in the page2.jsp . the form is included in page1.jsp

OK thas fine if you want to go back to page1 for more data, but you shoudn't connect to database and process request in JSP, you should do it in servlet. That is what servlets are build for

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
 
Please share the non-scriplet way for us uneducated folks.

Any decent book about JSP will teach you to use JSTL and/or JSF instead of scriptlets.

Of course many books you get cheap or find pirated online are old ones from before JSTL even existed, or written by people who don't care about teaching things properly but only want to get rich quick selling books to schools.

jwenting
duckman
Team Colleague
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
 

That's great, but since you're trying to teach us how NOT to use scriptlets, I'd love to know the right way to do this.

<%
response.sendRedirect("someUrl");
%>

Please share. :D
I'm much more a C# person than Java these days and the Java I did do was on an old crappy server that didn't fully support JSTL, so I have no idea how else you would do this. This is what Sun had on its site. Please tell me the better way to do this so I know for future reference.

nikkiH
Junior Poster in Training
79 posts since Dec 2006
Reputation Points: 13
Solved Threads: 4
 

Do NOT do that in a JSP, use a servlet...
How hard can it get.

JSP are for PRESENTATION only, NEVER for application flow control or business logic.

jwenting
duckman
Team Colleague
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
 

That's great, but since you're trying to teach us how NOT to use scriptlets, I'd love to know the right way to do this.

<% response.sendRedirect("someUrl"); %>

Please share. :D I'm much more a C# person than Java these days and the Java I did do was on an old crappy server that didn't fully support JSTL, so I have no idea how else you would do this. This is what Sun had on its site. Please tell me the better way to do this so I know for future reference.


_______________________________________________________ Reply from shobana
----------------------------------------------------------------------------------
Your code helped me a lot..
Thank you

shobana_soma
Newbie Poster
2 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
 
<c:redirect url="http:www.someurl.com" />
Thirusha
Posting Whiz
357 posts since Mar 2008
Reputation Points: 36
Solved Threads: 57
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You