You might want to add some delay before redirect the page, instead of using sendRedirect(), which will redirect immediately, you can use response.setHeader() in JSP.
response.setHeader("Refresh", "5; URL=http://pandaeatsbamboo.blogspot.com/test.jsp")
You will then be redirected to the page after 5 seconds.
1 comment:
Thanks for the info dude... =)
Post a Comment