Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can a cookie is deleted with JSP?

Answer Posted / venkat

<%
Cookie killMyCookie = new Cookie("mycookie", null);
<%-- mycookie is the cookie instance which we have to
delete%>
killMyCookie.setMaxAge(0);
killMyCookie.setPath("/");
response.addCookie(killMyCookie);
%>

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are implicit objects in jsp?

1004


What is the differences between the jsp custom tags and java beans?

1032


How do I mix jsp and ssi #include?

1040


What is the purpose of ?

1030


How can I declare methods within my jsp page?

989


What are the two ways to include the result of another page?

2353


Explain client-side and server-side validation.

924


What is the use of implicit object named "application" in Application?

1748


What are the events in jsp page?

965


What is jsp container?

1005


Why does _jspService() start with an ‘_’ but other lifecycle methods do not?

1038


how to insert star image and need to rate it.. one star two star so on how to do in jsp...????

2287


What are the components of jsp?

1009


How can information from one JSP be passed to another JSP?

1060


How we can include the result of another page in jsp?

965