私が見るところはどこでも、これはクッキーを追加する正しい方法です:
HttpCookie Session = new HttpCookie("Session");
Session.Value = someguid;
Session.Expires = somedatetime;
Response.Cookies.Add(Session);
そして、応答を現在のコンテキストに取り込む方法についての説明がない場合はいつでも。だから私はこのエラーを受け取ります:
The name 'Response' does not exist in the current context
上記のコードを機能させるには何をする必要がありますか?