Another little anomaly I found. Apparently the client doesn't send the experation date of a cookie when it sends the cookie to the server. So, in asp.net when retrieving a cooky the experation date will always be MinDate even if the date is set correctly.
HttpRequest oRequest = System.Web.HttpContext.Current.Request;HttpResponse oResponse = System.Web.HttpContext.Current.Response;HttpCookie oCookie = oRequest.Cookies[ConfigurationManager.AppSettings["anonUserCookie"]];if (oCookie == null) oCookie = new HttpCookie(ConfigurationManager.AppSettings["anonUserCookie"], Guid.NewGuid().ToString());oCookie.Expires = DateTime.UtcNow.AddMonths(1);oResponse.Cookies.Add(oCookie);