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?



How can a cookie is deleted with JSP?..

Answer / 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

More JSP Interview Questions

What do you mean by jsp directives?

0 Answers  


What are implicit objects in jsp?

0 Answers  


How do I open a jsp file?

0 Answers  


Differentiate between include directive and include action.

0 Answers  


Can a subsequent request be accessed with one’s servlet code, if a request attribute is already sent in his jsp?

0 Answers  


What's the difference between an import and include directive, and also the difference between include directive and include action?

1 Answers  


why JSP is bigger choice for software development as compare to ASP.

2 Answers  


What is a javaserver pages (jsp)?

0 Answers  


How is jsp used in the mvc model?

0 Answers  


Explain various implicit objects in expression language.

0 Answers  


Is the session object always created on the jsp page, is it possible to disable its creation?

0 Answers  


How to get value from java to jsp page?

0 Answers  


Categories