difference between asp.net cookies and asp cookies
difference between asp.net cookies and asp cookies - do they share same id and values ? if so are there any performance issues ?
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.
Guest UserPosted Nov 18, 2013, 8:47 AM
I used following code to collect the asp assigned/used cookies to assign to asp.net framework
if (Request.Cookies["aspuserName"] != null) {
HttpCookie aspnetuserNameCookie = Request.Cookies["aspuserName"];
TBUserName.Text = Server.HtmlEncode( aspnetuserNameCookie.Value);
}
I am unable to retrieve the ASP assigned cookie values.
Is something wrong in the syntax or logic ?
Satyapriya NayakPosted Nov 17, 2013, 1:29 AM
http://www.w3schools.com/ASP/asp_cookies.asp