在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → asp.net 购物车例子完整源码下载(含数据库)

asp.net 购物车例子完整源码下载(含数据库)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.86M
  • 下载次数:199
  • 浏览次数:3932
  • 发布时间:2015-05-20
  • 实例类别:C#语言基础
  • 发 布 人:aguang
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 购物车

实例介绍

【实例简介】C#购物车

【实例截图】

【核心代码】


using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

//51aspx
public partial class ShoppingCart : System.Web.UI.Page
{
    public static string M_str_Count;
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            //向购物车中添加商品,如果购物车中已经存在该商品,则商品数量加1,如果是第一次购买,则向购物车中添加一条商品信息
            string P_str_CartID = Session["UserID"].ToString();
            string P_str_GoodsID = Request["GoodsID"];
            DataSet ds = DB.reDs("select count(*) from tb_Cart where CartID="   P_str_CartID   "and GoodsID="   P_str_GoodsID);
            if (ds.Tables[0].Rows[0][0].ToString() == "0")
            {

                DataSet ds1 = DB.reDs("select GoodsName,GoodsPrice from tb_GoodsInfo where GoodsID="   P_str_GoodsID);
                string P_str_GoodsName = ds1.Tables[0].Rows[0][0].ToString();
                string P_str_GoodsPrice = ds1.Tables[0].Rows[0][1].ToString();
                string P_str_Num = "1";
                DB.ExSql("insert into tb_Cart values("   P_str_CartID   ","   P_str_GoodsID   ",'"   P_str_GoodsName   "',"   P_str_GoodsPrice   ","   P_str_Num   ")");
            }
            else
            {
                DB.ExSql("update tb_Cart set Num=Num 1 where CartID="   P_str_CartID   "and GoodsID="   P_str_GoodsID);
            }


            //显示购物车中的商品信息
            Bind();
        }
    }
    //绑定DataList控件
    public void Bind()
    {
        DataSet ds2 = DB.reDs("select *,GoodsPrice*Num As Count from tb_Cart where CartID="   Session ["UserID"]);
        float P_fl_Count = 0;
        foreach (DataRow dr in ds2.Tables[0].Rows)
        {
            P_fl_Count  = Convert.ToSingle(dr[6]);
        }
        M_str_Count = P_fl_Count.ToString();
        dlShoppingCart.DataSource = ds2;
        dlShoppingCart.DataBind();
    }
    //51aspx
    protected void dlShoppingCart_ItemDataBound(object sender, DataListItemEventArgs e)
    {
        //用来实现数量文本框中只能输入数字
        TextBox txtGoodsNum = (TextBox)e.Item.FindControl("txtGoodsNum");
        if (txtGoodsNum != null)
        {
            txtGoodsNum.Attributes["onkeyup"] = "value=value.replace(/[^\\d]/g,'')";
        }

    }
    //清空购物车
    protected void lnkbtnClear_Click(object sender, EventArgs e)
    {
        bool P_bool_reVal=DB.ExSql("Delete from tb_Cart where CartID=" Session["UserID"]);
        if (!P_bool_reVal)
            Response.Write("<script>清空失败,请重试!</script>");
        else
            Bind();
    }
    //清空购物车时的提示信息
    protected void lnkbtnClear_Load(object sender, EventArgs e)
    {
        lnkbtnClear.Attributes["onclick"] = "javascript:return confirm('你确定要清空购物车吗?')";
    }
    //5-1-a-s-p-x
    //继续购物
    protected void lnkbtnContinue_Click(object sender, EventArgs e)
    {
        Response.Redirect("~/Default.aspx");
    }
    //删除购物车中的商品
    protected void dlShoppingCart_DeleteCommand(object source, DataListCommandEventArgs e)
    {
        bool P_bool_reVal = DB.ExSql("Delete from tb_Cart where CartID="   Session["UserID"] " and GoodsID=" e.CommandArgument.ToString ());
        if (!P_bool_reVal)
            Response.Write("<script>删除失败,请重试!</script>");
        else
            Bind();
    }
    //删除购物车中的商品时的提示信息
    protected void lnkbtnDel_Load(object sender, EventArgs e)
    {
        ((LinkButton)sender).Attributes["onclick"] = "javascript:return confirm('你确定要删除该物品吗?')";
    }
    //更新购物车
    protected void dlShoppingCart_ItemCommand(object source, DataListCommandEventArgs e)
    {
        if (e.CommandName == "updateNum")
        {
            string P_str_Num = ((TextBox)e.Item.FindControl("txtGoodsNum")).Text;
            bool P_bool_reVal = DB.ExSql("update tb_Cart set Num="   P_str_Num   "where CartID="   Session["UserID"]   "and GoodsID="   e.CommandArgument.ToString());
            if (P_bool_reVal)
                Bind();
        }
    }
    //-------------------------51aspx-----------------------------------//
    protected void lnkbtnSettleAccounts_Click(object sender, EventArgs e)
    {
        if (M_str_Count == "")
        {
            Response.Write("<script>alert('您的购物车中没有任何物品!');</script>");
        }
        else
        {
            DataSet ds = DB.reDs("select Money from tb_User where UserID="   Session["UserID"].ToString());
            decimal P_str_Money = Convert.ToDecimal (ds.Tables [0].Rows [0][0].ToString ());
            if (P_str_Money < Convert.ToDecimal (M_str_Count))
            {
                Response.Write("<script>alert('您的余额不足,请重新充值后再购买!');</script>");
            }
            else
            {
                bool P_bool_reVal1 = DB.ExSql("Delete from tb_Cart where CartID="   Session["UserID"]);
                bool P_bool_reval2 = DB.ExSql("update tb_User set Money=Money-" M_str_Count " where UserID=" Session["UserID"]);
                if (!P_bool_reVal1 & !P_bool_reval2)
                {
                    Response.Write("<script>结账失败,请重试!</script>");
                }
                else
                {
                    Bind();
                    //Response.Redirect("SuccessShop.aspx");
                    Response.Write("<script>window.open('SuccessShop.aspx','','Width=300px;Height=250px;status=no;help=no;scrollbars=no');</script>");
                }
            }
        }
    }
}


标签: 购物车

实例下载地址

asp.net 购物车例子完整源码下载(含数据库)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 古歌雅虎 发表于: 2020-07-08 21:54 01
public 静态 DB是要自己写么

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有3条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警