cookies

BD_Planet

New Member
How can I update cookie?<BR>I have made a cookie like so:<BR><BR>Dim mycookie As New HttpCookie("voted")<BR>mycookie.Values.Add("votedYet","0") mycookie.Expires=todaysDate.AddDays(1)<BR>Response.Cookies.Add(mycookie)<BR><BR>then later on I try updating the cookie by:<BR><BR>mycookie.Values.Add("votedYet","1")<BR><BR>when I open the cookie file the value is unchanged.<BR><BR>Thanks for the help<BR>
 
Back
Top