Been banging my head against the wall for the last several hours. What the &^*% am I doing wrong.
Code to set the cookie
Response.Cookies["mydomain-LoginName"].Value = ((Login)sender).UserName;
Response.Cookies["mydomain-LoginName"].Expires = DateTime.Now.AddDays(30);
code to read the information back in
strLoginName = Request.Cookies["mydomain-LoginName"].Value;