Hi,
I want to use cookie to store my application value.
Here is a snippet :
// Settings is an object array.
object[] Settings = new object[3];
// This is Cookie
HttpCookie aCookie = new HttpCookie("aSettings");
I am using the cookies for the first time.
I want to store the Settings in cookie,
and get back from the cookie to Object[] Settings.
please help me.
Thanks in advance.
AGM RAJA
I want to use cookie to store my application value.
Here is a snippet :
// Settings is an object array.
object[] Settings = new object[3];
// This is Cookie
HttpCookie aCookie = new HttpCookie("aSettings");
I am using the cookies for the first time.
I want to store the Settings in cookie,
and get back from the cookie to Object[] Settings.
please help me.
Thanks in advance.
AGM RAJA