hi
It is possible that write expiration date , time seprately of cookie..............?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Om prakash SinghPosted Aug 9, 2011, 4:18 AM
Smart LuckyPosted Aug 8, 2011, 2:29 AM
Om prakash SinghPosted Aug 6, 2011, 6:42 AM
Response.Write(Request.Cookies["userInfo"]["lastVisit"]);
Response.Write(Request.Cookies["userInfo"].Expires);
Smart LuckyPosted Aug 6, 2011, 3:42 AM
More Than One Value cookies...?
Jiteendra SampathiraoPosted Aug 6, 2011, 3:11 AM
Response.Cookies["userInfo"]["userName"] = "patrick";
Response.Cookies["userInfo"]["lastVisit"] = DateTime.Now.ToString();
Response.Cookies["userInfo"].Expires = DateTime.Now.AddDays(1);
Response.Cookies["MyCookie"].Value = "cookie data";
Response.Cookies["MyCookie"].Expires = DateTime.Now.AddSeconds(50);
Refer these Link1 and Link2 for more info..........
hope this help you..........