我有下面的代码,它使用session,但我在行中有一个错误:
if (Session["ShoppingCart"] == null)
错误是cS0103: The name 'Session' does not exist in the current context
这是什么问题?
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Collections.Generic;
using System.Web.SessionState;
/// <summary>
/// Summary description for ShoppingCart
/// </summary>
public class ShoppingCart
{
List<CartItem> list;
public ShoppingCart()
{
if (Session["ShoppingCart"] == null)
list = new List<CartItem>();
else
list = (List<CartItem>)Session["ShoppingCart"];
}
}
5条答案
按热度按时间3wabscal1#
使用
而不是
mzsu5hc02#
问题是你的类没有从Page继承。你需要改变
到
一定会成功的
soat7uwm3#
您需要通过继承
Page
将类转换为Page
,或者传入Session
,或者使用HttpContext.Current.Session
。9rnv2umw4#
在我的例子中,只有try-catch块修复问题,像这样:
tuwxkamq5#
如果你想直接使用session,只需添加以下命名空间: