hi
i post the code.
Some Storage Property in C#
//Cookie
HttpCookie cookieCreate = new HttpCookie("HttpBrowserCookieCheck");
cookieCreate.Value = "UserName";
HttpCookie cookieCheck = null;
cookieCheck = Request.Cookies["HttpBrowserCookieCheck"];
//Session
Session["Username"] = "dotnetfunda";
//ViewState
ViewState["Username"] = "AspDotnet";