王朝网络
分享
 
 
 

Developing a Shopping Cart - Part 1

王朝asp·作者佚名  2006-01-09
宽屏版  字体: |||超大  

source:

http://www.dotnetbips.com/displayarticle.aspx?id=280

begin:

Download Source Code

Introduction

Many ecommerce web sites require a shopping cart as an essential part. There are many ways to develop these shopping cart. Some of them are - cookie based, session based and database driven. Each technique has advantages and disadvantages of its own. In this series of articles I will explore each technique with code sample and finally present you a generic solution that will work in any of these situations. To begin with this article illustrates developing a cookie based shopping cart.

Using Cookies for state storage

Any shopping cart essentially needs to store product details such as product code, product name, unit price and quantity. You will be presenting a product catalog to the user from which he can select the products. He may also navigate to other parts of the site while he is shopping. You need to maintain his selection across the pages so that finally when he visits shopping cart page you can show collective details there.

Cookies can be used to preserve this state information across the requests. In ASP.NET cookie is represented by a class called HttpCookie. This article does not tell you how to work with cookies. You can learn that here. We will be using multi-value cookies for our example.

Developing a simple product listing page

We will first build a simple web form that lists Products table of Northwind database in a DataGrid.

Create a new web project in VS.NET with C# as the language.

Add a web form called ProductCatalog.aspx to it

Drag and drop a DataGrid control on it.

Write a function called BindGrid() as shown below:private void BindGrid()

{

SqlDataAdapter da=

new SqlDataAdapter

("select * from products",

@"data source=.\vsdotnet;initial catalog=northwind;user id=sa");

DataSet ds=new DataSet();

da.Fill(ds,"products");

DataGrid1.DataSource=ds;

DataGrid1.DataBind();

}

Call this function in the Page_Load event handlerprivate void Page_Load(object sender, System.EventArgs e)

{

if(!Page.IsPostBack)

{

BindGrid();

}

}

Write following code in the SelectedIndexChanged event of the DataGrid.private void

DataGrid1_SelectedIndexChanged

(object sender, System.EventArgs e)

{

HttpCookie c=null;

if(HttpContext.Current.Request.Cookies["shoppingcart"]==null)

c=new HttpCookie("shoppingcart");

else

c=HttpContext.Current.Request.Cookies["shoppingcart"];

string itemdetails;

itemdetails=DataGrid1.SelectedItem.Cells[1].Text +

"|" + DataGrid1.SelectedItem.Cells[2].Text +

"|" + DataGrid1.SelectedItem.Cells[3].Text;

c.Values[DataGrid1.SelectedItem.Cells[1].Text]=itemdetails;

Response.Cookies.Add(c);

}

Here, we create a cookie called shoppingcart. This cookie further contains subkey-value pairs. Based on user selection we simply add sub keys to this cookie with product id as the key. Then we write that cookie to Response.Cookies collection.

Drag and drop a button control on the web form and write following code in the it's click event handler.private void Button1_Click

(object sender, System.EventArgs e)

{

Response.Redirect("cart.aspx");

}

Here, we are simply navigating to the cart.aspx page which displays the shopping cart.

Creating the shopping cart web form

Add another web form to the above project called cart.aspx

Create a class called CShoppingCartItem as shown below:public class CShoppingCartItem

{

private int intProductID;

private string strProductName;

private decimal decUnitPrice;

private int intQuantity;

public int ProductID

{

get

{

return intProductID;

}

set

{

intProductID=value;

}

}

public string ProductName

{

get

{

return strProductName;

}

set

{

strProductName=value;

}

}

public decimal UnitPrice

{

get

{

return decUnitPrice;

}

set

{

decUnitPrice=value;

}

}

public int Quantity

{

get

{

return intQuantity;

}

set

{

intQuantity=value;

}

}

}

This class is going to represent one item of the shopping cart.

Drag and drop a DataGrid on the web form.

Create a function called FillCartFromCookies() as shown beow:private void FillCartFromCookies()

{

HttpCookie c=HttpContext.Current.Request.Cookies["shoppingcart"];

ArrayList items=new ArrayList();

for(int i=0;i<c.Values.Count;i++)

{

string[] vals=c.Values[i].Split('|');

CShoppingCartItem item=new CShoppingCartItem();

item.ProductID=int.Parse(vals[0]);

item.ProductName=vals[1];

item.UnitPrice=decimal.Parse(vals[2]);

item.Quantity=1;

items.Add(item);

}

DataGrid1.DataSource=items;

DataGrid1.DataBind();

Button1_Click(null,null);

}

Here, we are reading the cookies that we set previously and constructing CShoppingCartItem instances based on the selected values. These instances are then added to an ArrayList. Finally, this ArrayList is bound with the DataGrid.

Drag and drop a button called Recalculate and write following code to its click event handlerprivate void Button1_Click

(object sender, System.EventArgs e)

{

decimal total=0;

try

{

foreach(DataGridItem dgi in DataGrid1.Items)

{

if(dgi.ItemType==ListItemType.Item

|| dgi.ItemType==ListItemType.AlternatingItem)

{

TextBox t=(TextBox)dgi.Cells[3].Controls[1];

int quantity=int.Parse(t.Text);

decimal unitprice=Decimal.Parse(dgi.Cells[2].Text);

total=total + (unitprice * quantity);

}

}

}

catch

{

}

lblAmt.Text=total.ToString();

}

This code calculates the total amount of the items selected based on the quantity entered and displays it in a label.

Finally, we will write code to delete items from the cart.private void DataGrid1_DeleteCommand

(object source,

System.Web.UI.WebControls.DataGridCommandEventArgs e)

{

HttpCookie c=HttpContext.Current.Request.Cookies["shoppingcart"];

c.Values.Remove(e.Item.Cells[0].Text);

Response.Cookies.Add(c);

FillCartFromCookies();

}

Code Download

The complete working example is available for download. Please see the link at the top of the article.

Summary

In this article we saw how to use cookies to preserve shopping cart values. This approach is quick and easy to code but has one big disadvantage. Not all browsers will have cookies enabled. Hence, you should use this technique with care. In the next article we will see how to develop similar shopping cart using session variables.

About the author

Name :

Bipin Joshi

Email :

webmaster at dotnetbips.com

Profile :

Bipin Joshi is the webmaster of DotNetBips.com. He is the founder of BinaryIntellect Consulting (www.binaryintellect.com) - a company providing training and consulting services on .NET framework. He conducts intensive training programs in Thane/Mumbai for developers. He is also a Microsoft MVP (ASP.NET) and a member of ASPInsiders.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
>>返回首页<<
推荐阅读
 
 
频道精选
 
静静地坐在废墟上,四周的荒凉一望无际,忽然觉得,凄凉也很美
© 2005- 王朝网络 版权所有