How do you create a permanent cookie?

Answers were Sorted based on User's Feedback



How do you create a permanent cookie?..

Answer / rahul garad

You can set the permanent cookied by setting the expiry
date to the MaxDate

<%
Response.Cookies("username") = "you"
Response.Cookies("username").Expires = Date.MaxValue
%>

Is This Answer Correct ?    70 Yes 2 No

How do you create a permanent cookie?..

Answer / ajinkya

<%
Response.Cookies("username") = "you"
Response.Cookies("username").Expires = Date.MaxValue
%>

Is This Answer Correct ?    3 Yes 1 No

How do you create a permanent cookie?..

Answer / naseem malik

If You want to Create a parament Cookies. you Permanent cookies are available until a specified expiration date, and are stored on the hard disk.So Set the 'Expires' property any value greater than DataTime.MinValue with respect to the current datetime. If u want the cookie which never expires set its Expires property equal to DateTime.maxValue.

Is This Answer Correct ?    1 Yes 0 No

How do you create a permanent cookie?..

Answer / bhim bharti

Permanent cookies are available until a specified expiration date, and are stored on the hard disk.So Set the 'Expires' property any value greater than DataTime.MinValue with respect to the current datetime. If u want the cookie which never expires set its Expires property equal to DateTime.maxValue.

Is This Answer Correct ?    0 Yes 0 No

How do you create a permanent cookie?..

Answer / preeti

Permanent cookies are the ones that are most useful. Permanent cookies are available until a specified expiration date, and are stored on the hard disk. The location of cookies differs with each browser, but this doesn’t matter, as this is all handled by your browser and the server. If you want to create a permanent cookie called Name with a value of Nigel, which expires in one month, you’d use the following code
Response.Cookies ("Name") = "Nigel"
Response.Cookies ("Name"). Expires = DateAdd ("m", 1, Now ())

Is This Answer Correct ?    0 Yes 0 No

How do you create a permanent cookie?..

Answer / laki

we can create a permanent cookies giving the expiry date .
So Set the 'Expires' property any value greater than
DataTime.MinValue with respect to the current datetime. If
u want the cookie which never expires set its Expires
property equal to DateTime.maxValue.

Is This Answer Correct ?    7 Yes 8 No

How do you create a permanent cookie?..

Answer / sapna

Cookie is like a temporary file which contains a name and a
value pair and resides in the client.

cookie prepared or modified by the server side script will
be appended to the response and will be sent to the client.

dim cook as httpcookie
cook=new httpcookie("items")
cook.value=textbox1.text
response.appendcookie(cook).

Is This Answer Correct ?    13 Yes 15 No

How do you create a permanent cookie?..

Answer / shwetha

by setting the expiry property greater than
datetime.minvalue...

Is This Answer Correct ?    10 Yes 13 No

Post New Answer

More ASP.NET Interview Questions

what is the jit? what is the type of jit and purpose of it>

2 Answers   Honeywell,


What does uri mean?

0 Answers  


Explain what is clr?

0 Answers  


Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box?

1 Answers  


Give an example appropriate use forweb service as opposed to a non-serviced .NET component

1 Answers   Siebel,






What are runtime hosts?

4 Answers   Microsoft,


What is role-based security in asp.net?

0 Answers  


Explain what a diffgram is, and a good use for one?

1 Answers  


Explain security types in asp.net?

0 Answers  


What is asp.net web pages?

0 Answers  


What does asp stand for in asp.net?

0 Answers  


What is caching and types of caching ?

2 Answers   Infosys,


Categories