<%
if (Request.Cookies["userName"]!=null)
{
HttpCookie userCookie = new HttpCookie("userName");
userCookie.Expires = (DateTime.Now).AddDays(365);
userCookie.Value = Request.Cookies["userName"].Value;
Response.Cookies.Add(userCookie);
}
%>
©Copyright 2009, DISH Network L.L.C., all rights reserved.