How to redirect to another JSP page ?
I am developing a JSP/servlets web application..
I want that when user lgges out he is displayed the logout page i.e. logout.jsp
and afterword automatically redirect to index page after some time..
i tried..
1. <jsp:forward page=""index.jsp" />
and 2. response.sendRedirect("index.jsp");
but was not sucessfull..

