when will cookie information destroy?
Answers were Sorted based on User's Feedback
Answer / balakrishna
cookie is a"small amount of data" that is set by the server
on the client.
we have setmaxAge() for destroy cookie.
1.cookie.setMaxAge(100)-->100 sec
If we set the max age of a cookie to 100 sec,the browser
holds the cookie for 100 sec even if we close the browser.
2.If we set max age value to negative value the browser hold
the cookie till we close the browser.
3.If we use setMaxAge(0) the browser will arase the cookie.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / suresh
cookie is small amount of data and it's store on the client
machine that is your browser machine
..Developer to create cookie and set the life time of cookie
on our web application
example
cookie.setMaxAge(1000);
the cookie available in 1000ms
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / ravikiran
when we disable the cookies inside the client browser or if
the cookie age is finished which is set as
cookie.setMaxAge(mins*secs);
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ramu
cookie is small "amount of a data", the cookie is set by
client & server.
cookie is setmaxAge() .
For ex:-
1.cookie.setMaxAge(100)-->100 sec
If we set the max age of a cookie to 100 sec,the
browser
holds the cookie for 100 sec even if we close the browser.
2.If we set max age value to negative value the browser hold
the cookie till we close the browser.
3.If we use setMaxAge(0) the browser will arase the cookie.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / manisha
Along with setMaxAge() method the gae of the cookie can be
set in web.xml
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / bijaya
Cookie is a small unit of information created at the server and is maintained at the client side.
This information is managed by HTTP protocol.
The cookie will be exiating in the client for the time period specified by the MaxAge property,
So,to destroy the the cookie we have to set the MaxAge to 0.
Ex:
cookie.setMaxAge(0);
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikiran
when we disable the cookies inside the client browser or if
the cookie age is finished which is set as
cookie.setMaxAge(mins*secs);
| Is This Answer Correct ? | 0 Yes | 2 No |
i have class files in class folder. but i have no java files. but i want to modify the java files which are related to class files . how ?
What are the different types of servlets?
What are the various ways of session supervision in servlets?
how to pass parameter from servlet to html form
What is the use of Servlets?
Can filter be used as request or response?
Is there any differance b/w getting servlet context from servlet config and session? if yes then what is that?
How do you create a cookie using servlet?
Why do you use session tracking in httpservlet?
What are the new features added to servlet 2.5?
Define the servlet mapping.
How do you track a user session in servlets?