redirection JSP not working in IE
Hi all,
I have a servlet with the following part of the code to redirect to an jsp page.
When I enter the correct username and password, and click "submit", it should redirect to my index.jsp page. It works fine with firefox, but in Inter
works fine with firefox. But in Internet Explorer(IE), if I click "submit" button, nothing happened, it just remain at the original page.
/*********************************************************************************/
if(buttonType.equalsIgnoreCase("submit")){
if (username.equals("test") && password.equals("test")){
url = host+"index.jsp";
response.sendRedirect(url);
return;
}
}
/*********************************************************************************/
Thank you in advance!

