asp.net类文件中出现上下文中不存在HttpContext

在类库中的类文件使用HttpContext需要引用程序集

右击类库,添加引用,在框架中把System.WebSystem.Web.Extensions勾选上,点击确定。


注意:别忘了using指令 using System.Web;


例:

HttpContext.Current.Request.Cookies["id"].Value

你可能感兴趣的:(Asp.net)