技术微信:375279829 欢迎来到【毕业设计资料-计算机毕业设计源码网】官网!
您的位置:您的位置:主页 > 作品中心 > NET毕业设计

基于MVC架构与ASP.NET的文化超市网站设计

技术微信:375279829

本课题包括源程序、数据库、论文、运行软件、运行教程

毕业设计资料-计算机毕业设计源码网:我们提供的源码通过邮箱或者QQ微信传送,如果有啥问题直接联系客服

包在您电脑上运行成功

语言:Asp.NET、ASP、C#、C++

数据库:SQLServer

框架:mvc

课题相关技术、功能详情请联系技术

作品描述
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;
using System.Collections.Generic;
using System.Text;

namespace LSJ.Web
{
    public partial class cart : BasePage
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (user.IsLogin() == true)
            {
                if (!this.IsPostBack)
                {
                    this.Bind();
                }
            }
            else
            {
                this.Response.Redirect("login_1.aspx");
            }
        }

        LSJ.BLL.cart ocart = new LSJ.BLL.cart();
        LSJ.BLL.userinfo user = new LSJ.BLL.userinfo();

        private void Bind()
        {
            DataTable table = ocart.getcartlist(user.getUserID());
            this.cartrepeater.DataSource = table.DefaultView;
            this.cartrepeater.DataBind();

            this.counttypelieteral.Text = this.cartrepeater.Items.Count.ToString();

            this.countnumlieteral.Text = num.ToString();
            this.countpricelieral.Text = price.ToString();
        }

        int num = 0;
        double price = 0.0;

        protected void cartrepeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            {
                Label pricelabel = e.Item.FindControl("pricelabel") as Label;
                Label countpricelabel = e.Item.FindControl("countpricelabel") as Label;
                TextBox counttb = e.Item.FindControl("counttb") as TextBox;
                DataRowView drv = e.Item.DataItem as DataRowView;
                if (drv["specials"].ToString().ToLower() == "true")
                {
                    //pricelabel.Text = drv["specialsprice"].ToString().Substring(0,drv["specialsprice"].ToString().Length-2);
                    pricelabel.Text = drv["specialsprice"].ToString();
                }
                else
                {
                    //pricelabel.Text = drv["userprice"].ToString().Substring(0, drv["userprice"].ToString().Length - 2);
                    pricelabel.Text = drv["userprice"].ToString();
                }
                counttb.Text = drv["count"].ToString();
                try
                {
                    countpricelabel.Text = (double.Parse(pricelabel.Text) * int.Parse(counttb.Text.Trim())).ToString();
        
                num += int.Parse(counttb.Text.Trim());
                price += double.Parse(countpricelabel.Text.Trim());

                }
                catch
                { }

            }
        }

        /// <summary>
        /// 修改数量
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void updatecount_Click(object sender, EventArgs e)
        {
            List<int> ids = new List<int>();
            List<int> counts = new List<int>();
            foreach (RepeaterItem item in this.cartrepeater.Items)
            {
                Label label = item.FindControl("productidlabel") as Label;
                TextBox textbox = item.FindControl("counttb") as TextBox;
                ids.Add(int.Parse(label.Text.Trim()));
                counts.Add(int.Parse(textbox.Text.Trim()));
            }
            for (int i = 0; i < ids.Count; i++)
            {
                ocart.updatecart(ids[i],user.getUserID(),counts[i]);
            }
                this.Bind();
        }

        /// <summary>
        /// 清空购物车
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void clearcount_Click(object sender, EventArgs e)
        {
            foreach (RepeaterItem item in this.cartrepeater.Items)
            {
                Label label = item.FindControl("cartidlabel") as Label;
         
                ocart.deletecart(int.Parse(label.Text.Trim()));
            }
            this.Bind();
           
        }

        protected void cartrepeater_ItemCommand(object source, RepeaterCommandEventArgs e)
        {
            if (e.CommandName == "deletecart")
            {
                Label label = e.Item.FindControl("cartidlabel") as Label;
                int id = int.Parse(label.Text);
                ocart.deletecart(id);
                this.Bind();
            }
        }

        protected void cartrepeater_ItemCreated(object sender, RepeaterItemEventArgs e)
        {
            //if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)
            //{
            //    Label label = item.FindControl("producteid") as Label;
                
            //}
        }

        protected void orderbt_Click(object sender, EventArgs e)
        {
            if (this.cartrepeater.Items.Count > 0)
            {
                StringBuilder productidsb = new StringBuilder();
                StringBuilder countsb = new StringBuilder();
                foreach (RepeaterItem item in this.cartrepeater.Items)
                {
                    Label productidlabel = item.FindControl("productidlabel") as Label;
                    productidsb.Append(",");
                    productidsb.Append(productidlabel.Text);
                    TextBox counttb = item.FindControl("counttb") as TextBox;
                    countsb.Append(",");
                    countsb.Append(counttb.Text.Trim());
                }
                Session["count"] = countsb.ToString();
                Session["productids"] = productidsb.ToString();
                Session["price"] = this.countpricelieral.Text;
                this.Response.Redirect("checkout.aspx");
                //Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", "<srcipt>alert('" + Session["productids"].ToString() + "')</script>", false);
            }
        }
    }
}

如需定做或者获取更多资料,请联系QQ:375279829
在线客服
联系方式

技术微信

375279829

在线时间

周一到周日

客服QQ

375279829

二维码
线