为什么我不能使用HttpContext或HttpCookie?
有特殊用途吗?
我的实际使用情况:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
我的名称:
namespace eCoffee.Main
我的班级方法:
public class AppRunCookie
{
public static string CookieName { get; set; }
public static string Key { get; set; }
public AppRunCookie(string key)
{
CookieName = "MyCookie_" + key;
}
public static void SetCookie(string key, int cookieExpireDate = 30)
{
HttpCookie myCookie = new HttpCookie(CookieName);
myCookie["Key"] = key;
myCookie.Expires = DateTime.Now.AddDays(cookieExpireDate);
HttpContext.Current.Response.Cookies.Add(myCookie);
}
public string GetCookie()
{
HttpCookie myCookie = HttpContext.Current.Request.Cookies[CookieName];
if (myCookie != null)
{
string key = Convert.ToString(myCookie.Values["Key"]);
return key;
}
return "";
}
}
我做错了什么?
最佳答案 HttpContext和HttpCookie的命名空间是System.Web,它是System.Web.dll库的一部分.
右键单击项目引用并选择添加引用….在新打开的窗口中单击程序集,然后搜索(通过右上角的搜索栏)以获取System.Web.
那么你应该可以通过它来使用它
using System.Web;