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 asp.net response object?

0 Answers  


What can you do with asp.net?

0 Answers  


Explain Authentication mechanism in dotnet

0 Answers   BirlaSoft,


hi all, can we sort the data set without using the gridview sort method

1 Answers   CGI,


Explain diff. Betn dataset and recordset?

0 Answers  






Is it possible for me to change my aspx file extension to some other name?

0 Answers  


How To Authenticate Your Web service??

1 Answers  


What is data reader in asp.net?

0 Answers  


What is the difference between and ActiveX dll and control ?

1 Answers   Microsoft,


I need to download file from web server, without using save as dialogue box. Can anyone help, thanks In advance.

1 Answers  


Any one can tell how we store tiff format images in database and retrive from the database(need for tiff format only)

0 Answers   Tricom,


What is gacutil.exe? Where do we store assemblies, Should sn.exe be used before gacutil.exe?

2 Answers   Accenture, Aptech,


Categories