购物车 ASP.NET 中的会话状态 ArrayList

发布于 2024-08-30 19:58:13 字数 721 浏览 4 评论 0原文

我正在创建一个购物车应用程序,但在为数组列表实现会话状态时遇到一些问题。

在我的页面加载中,我声明

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甚是思念 2024-09-06 19:58:13

您遇到什么问题了吗?尝试以下操作:

protected void onClick_AddBooking(object sender, EventArgs e)
    {
        int ClassID = Convert.ToInt32(Request.QueryString.Get("Class_Id"));
        ArrayList cart1 = new ArrayList();

        cart1 = (ArrayList)Session["Cart"];       

        cart1.Add(ClassID);

        Session["Cart"] = cart1;

Is there a problem you are having? Try the following:

protected void onClick_AddBooking(object sender, EventArgs e)
    {
        int ClassID = Convert.ToInt32(Request.QueryString.Get("Class_Id"));
        ArrayList cart1 = new ArrayList();

        cart1 = (ArrayList)Session["Cart"];       

        cart1.Add(ClassID);

        Session["Cart"] = cart1;
痴骨ら 2024-09-06 19:58:13

创建一个类,在其中定义属性 productNameproductQtyproductPrice
然后创建该类的对象并在这些属性中添加值。
然后将该对象添加到 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 that ArrayList again in the session.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文