if (HttpContext.Current.Request.Cookies.AllKeys.Contains("myCookie") &&
!String.IsNullOrEmpty(HttpContext.Current.Request.Cookies["myCookie"].Value))
{
HttpCookie myCookie = HttpContext.Current.Request.Cookies["myCookie"];
}
這段代碼有什麼問題嗎?每過一段時間,我們的製作網站都會在第4行收到一個空引用異常。我無法在測試中重現這一點。HttpContext Cookie
是的,它是第4行拋出異常。 – harmony 2011-02-08 20:30:53