response.sendRedirect...
Hello,
The code belove shows a part of my project. When I debug it, i see that altough response.sendRedirect executes, the flow goes on the other lines. I think it should redirect to the wanted page and goes on from there.. but it doesn't...
Object o = session.getAttribute("user");
UserBean user =null;
if (o==null)
response.sendRedirect(request.getContextPath());
else
user = (UserBean)o;
if (request.getParameter("kime")==null)
out.println("(*) needed");

