The method response.sendRedirect() is not working in my program.
The code go through and sucessfully print out.println(\"wrong user\");, but the redirec
HttpServletResponse.sendRedirect() works like this:
http://www.google.com , it redirects to http://www.google.com./ it redirects relative to the context root,
Else it redirects to the current urlBased on above rules in your case it redirects to http://currenturl/www.google.com.
Instead modify your code like this
response.sendRedirect("http://www.google.com");
return;
Try providing the protocol.
response.sendRedirect("http://www.google.com");
return;
You should return after redirecting.
response.sendRedirect("http://www.google.com");
return;
It does not return automatically after calling sendRedirect().
Try this
<% response.sendRedirect("http://www.google.com/"); %>