购物车 ASP.NET 中的会话状态 ArrayList
我正在创建一个购物车应用程序,但在为数组列表实现会话状态时遇到一些问题。
在我的页面加载中,我声明
if (Session["Cart"] == null)
{
Session["Cart"] = new ArrayList();
}
else
{
ArrayList cart = (ArrayList)Session["Cart"];
}
如果会话尚不存在则创建会话。 然后我有一个用于将项目添加到数组列表的按钮的事件处理程序,
protected void onClick_AddBooking(object sender, EventArgs e)
{
int ClassID = Convert.ToInt32(Request.QueryString.Get("Class_Id"));
ArrayList cart1 = new ArrayList();
cart1 = Session["Cart"];
cart1.Add(ClassID);
我猜我只是不知道如何处理会话状态,因此造成混乱。 我本质上是存储 class_ID,然后当学生确认时,我会将其存储到数据库并将该 ID 与班级详细信息相关联。
预先感谢各位!
I'm creating a shopping cart application and I'm having some issues with implementing a session state for my arraylist.
in my page load i declared
if (Session["Cart"] == null)
{
Session["Cart"] = new ArrayList();
}
else
{
ArrayList cart = (ArrayList)Session["Cart"];
}
to create the session if it doesn't exist yet.
then i have an event handler for a button to add items to the arraylist
protected void onClick_AddBooking(object sender, EventArgs e)
{
int ClassID = Convert.ToInt32(Request.QueryString.Get("Class_Id"));
ArrayList cart1 = new ArrayList();
cart1 = Session["Cart"];
cart1.Add(ClassID);
i'm guessing i just don't know how to handle session states yet, thus the confusion.
I'm essentially storing the class_ID then when the student confirms i'll store that to the DB and associate that ID with the Class Details.
Thanks in advance guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您遇到什么问题了吗?尝试以下操作:
Is there a problem you are having? Try the following:
创建一个类,在其中定义属性
productName
、productQty
、productPrice
然后创建该类的对象并在这些属性中添加值。
然后将该对象添加到 ArrayList 中,并再次将该 ArrayList 保存在会话中。
Make a class where you define the properties
productName
,productQty
,productPrice
then make the object of that class and add the values in these properties.
Then add that object into the
ArrayList
and save thatArrayList
again in the session.