I want to show cookie value in div. is it possible. if possible please share your answers.
My code:
X
Delete Page
"Here I want to show cookie value"
Thanks in advance......

Jaganathan BantheswaranPosted Feb 25, 2014, 6:40 AM
Here is the nice example
http://www.c-sharpcorner.com/UploadFile/ishbandhu2009/how-to-save-and-get-values-from-cookies-through-javascript/
KalaiPosted Feb 25, 2014, 6:34 AM
Here I want to show cookie value
And write the below code in test.aspx.cs
Response.Cookies["cookieName"].Value = "YourcookieName";
cookie.InnerText = Request.Cookies["cookieName"].Value;
Sarath KumarPosted Feb 25, 2014, 6:26 AM
cookie.InnerText
is it right...
KalaiPosted Feb 25, 2014, 6:13 AM
Client Side:
Here I want to show cookie value
Server Side:
Response.Cookies["cookieName"].Value = "YourcookieName";
cookie.InnerText = Request.Cookies["cookieName"].Value;