How to Delete Cookie in JSP page - JSP/Java Views : 376
Tagged in : JSP-Java
0 0
Send mail
We can delete the cookie by using the below code
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
Cookie cookie = new Cookie( "id", "" );
cookie.setMaxAge( 0 );
response.addCookie(cookie);//Cookie deleted or removed
%>
By Vinoth, On - 2010-01-28



    Login to add Comments .