Application["name"] = name;
Application.Lock();
string name = Application["name"].ToString();
Application.UnLock();
HttpContext.Current.Session["name"] = value;
string name=Session["name"].ToString();
public static void WriteCookie(string strName, string strValue, int expires)
{
HttpCookie cookie = HttpContext.Current.Request.Cookies[strName];
if (cookie == null)
{
cookie = new HttpCookie(strName);
}
cookie.Value = HttpUtility.UrlEncode(strValue);
cookie.Expires = DateTime.Now.AddMinutes(expires);
HttpContext.Current.Response.AppendCookie(cookie);
}