Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードがあります。
HttpCookie myCookie = new HttpCookie("PopMsgText"); myCookie.Value = message; Response.Cookies.Add(myCookie);
応答行で NullReferenceException を与えています。その理由は何ですか?
プロパティCookiesまたはResponseオブジェクトが null です。これは、このコードを呼び出している場所によって発生する可能性があります。たとえばResponse、バックグラウンド スレッドでオブジェクトにアクセスしようとすると、バックグラウンド スレッドに関連付けられた HttpContext がないため、null になる可能性があります。
Cookies
Response