here is my code :
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
HttpSession session = request.getSession(false);
if (session != null) {
session.removeAttribute("FirstName");
session.removeAttribute("pwd");
session.invalidate();
}
response.sendRedirect("index.html");
}
}
After this what can i do ? Any help would be appreciated ........