无论我在哪里看,这都是添加 Cookie 的正确方法:
HttpCookie Session = new HttpCookie("Session");
Session.Value = someguid;
Session.Expires = somedatetime;
Response.Cookies.Add(Session);
在没有解释如何将 Response 放入当前上下文的地方。所以我得到这个错误:
The name 'Response' does not exist in the current context
我需要做什么才能使上述代码正常工作?