分享
 
 
 

使用hashtable实现的购物车

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

在网上看到一些都不太好理解,所以把它们结合了一下,用HashTable去保存商品,再用DataTable写入到Datagrid中。http://61.180.163.222/shop

<%@ Page Language="VB" ContentType="text/html" Debug="true"%>

<%@ import namespace="system.data" %>

<%@ import namespace="system.data.oledb" %>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>无标题文档</title>

<style type="text/css">

<!--

td {

font-size: 9pt;

line-height: 24px;

}

-->

</style>

<style type="text/css">

<!--

a:link {

color: #000000;

text-decoration: none;

}

a:hover {

color: #FF0000;

text-decoration: none;

}

a:visited {

text-decoration: none;

}

-->

</style>

</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<form runat="server">

<!--#include virtual="header.htm"-->

<table width="776" border="0" cellspacing="0" cellpadding="0">

<tr>

<td width="159">&nbsp; </td>

<td width="617"><table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td width="17%" height="26"><p>&nbsp;</p>

<p>您所选购的商品</p></td>

<td width="2%" height="26">&nbsp;</td>

<td width="81%" height="26">&nbsp;</td>

</tr>

<tr>

<td height="26">&nbsp;</td>

<td height="26">&nbsp;</td>

<td height="26"><asp:Datagrid ID="dgCar" runat="server"

autogeneratecolumns="false"

BorderColor="#000000"

BorderWidth="1"

CellPadding="3"

HeaderStyle-BackColor="#990000"

HeaderStyle-ForeColor="#FFFFFF"

DataKeyField="title_id"

>

<columns>

<asp:boundcolumn HeaderText="商品" DataField="title" ItemStyle-Width="300"></asp:boundcolumn>

<asp:templatecolumn HeaderText="数量">

<itemtemplate>

<asp:textbox size=1 id="Qty" runat="server"

text='<%# Databinder.eval(container.dataitem,"qty")%>'/>

</itemtemplate>

</asp:templatecolumn>

<asp:boundcolumn HeaderText="单价" DataField="price" DataFormatString="{0:c}"></asp:boundcolumn>

<asp:boundcolumn HeaderText="总计" DataField="total" DataFormatString="{0:c}"></asp:boundcolumn>

<asp:templatecolumn HeaderText="删除">

<itemtemplate>

<asp:checkbox runat="server" ID="del"/>

</itemtemplate>

</asp:templatecolumn>

</columns>

</asp:Datagrid>

<asp:label runat="server" ID="msg" text="购物车为空" />

<hr>

<div align="right">总计:

<asp:label ID="lbltotal" runat="server" text="0"></asp:label>

<br>

折扣:<asp:label ID="sale" runat="server" Text="0.9"></asp:label><br>

应付:<asp:label ID="realprice" runat="server" Text="0" /></div>

<div align="center"><br>

<asp:imagebutton ID="re_car" ImageUrl="images/cxjs.gif" runat="server" OnClick="re_car_click" />

<asp:imagebutton ID="buy" ImageUrl="images/qsyt.gif" runat="server" />

<asp:imagebutton ID="clear" ImageUrl="images/qk.gif" runat="server" OnClick="clear_click" />

<a href="display_all.aspx">继续购物</a></div></td>

</tr>

<tr>

<td height="26">&nbsp;</td>

<td height="26">&nbsp;</td>

<td height="26">&nbsp;</td>

</tr>

</table></td>

</tr>

</table>

<!--#include virtual="footer.htm"-->

</form>

</body>

</html>

<script runat="server">

Sub Page_Load(Src As Object, E As EventArgs)

if not ispostback then

'取得用户要加入购物书的商品的ID

Dim product as string = request.QueryString("title-id")

'判断如果是用户所购买的第一件商品的话则那立一个hashTable

'否则从session中将已经存在的hashTable取回

Dim Hash As HashTable

IF Session("car") is nothing then

hash = New hashTable

Else

Hash = Session("car")

End if

'判断用户所选购的商品是否已经存在于购物车中

'如果不存在则将其加入购物车,如果存在则在原有数据上加1

if Not Hash.ContainsKey(product) then

Hash.Add(product,1)

else

hash.item(product) +=1

end if

session("car")=hash

display()

end if

End Sub

'------------------用于显示商品的子程序--------------------

Sub Display()

Dim i as integer

dim x as string

'取得session中的hashTable

dim hash as hashtable

Hash = Session("car")

'将所有选购的商品构造成为一个字符串

dim Products As String

products = "('"

For Each X in hash.keys

Products = products & X & "','"

next

Products = Products & "')"

'根据所购商品的字符串读取商品信息,然后放在producttable中

dim conn as oledbconnection

Dim ds as new dataset

dim Table1 as DataTable

dim connstr as string = "provider=Microsoft.jet.oledb.4.0;data source=" & server.MapPath("db3.mdb")

conn = new oledbconnection(connstr)

conn.open()

'读取数据并将数据填充到table1中

dim comm as oledbdataadapter

dim strsql as string ="select title_id,title,price from titles where title_id in " & products

comm = new oledbdataadapter(strsql,conn)

comm.fill(ds,"product")

table1 = ds.tables("product")

'向table1中增加一列

table1.columns.add(new datacolumn("qty",gettype(integer)))

'将title设置为主键

Dim Keys() as DataColumn = {table1.Columns("title_id")}

table1.primarykey=keys

'向producttable表新增字段

for each x in hash.keys

table1.rows.find(x).item("qty")=hash.item(x)

next

'向table1中增加总计列,并计算总计值

table1.columns.add(new datacolumn("total",gettype(double),"price*qty"))

'判断购物车是否为空

if table1.rows.count =0 then

dgcar.visible="false"

msg.visible="true"

else

dgcar.visible="True"

msg.visible="False"

end if

'计算帐单总价及折扣后的价格

lbltotal.text="0"

For i=0 to table1.rows.count-1

lbltotal.text =string.format("{0:c}",cdbl(lbltotal.text)+table1.rows(i).item("total"))

next

realprice.text = string.format("{0:c}",cdbl(sale.text) * lbltotal.text)

'将数据绑定dgcar

dgCar.datasource=table1.defaultview

dgCar.databind()

conn.close

End Sub

'------------------用于清空购物车的事件程序---------------

Sub clear_click(sender as object,e as imageclickeventargs)

'将session("car")清空

session("car") = new hashtable()

lbltotal.text = "0"

realprice.text="0"

display()

End sub

'------------------用于更新购物车的事件程序------------------

Sub re_car_click(sender as object,e as imageclickeventargs)

'判断Session("car")是否存在,如果在刚将其取得保存在hash中

Dim Hash As HashTable

IF Session("car") is nothing then

hash = New hashTable

Else

Hash = Session("car")

End if

'依决检查每一行的数量和checkbox控件,并更新hashtable

Dim qty As Textbox

dim del as checkbox

Dim I as integer

For I = 0 to dgcar.items.count -1

qty = dgcar.items(i).findcontrol("qty")

del = dgcar.items(i).findcontrol("del")

if (cint(qty.text)> 0) and (not del.checked) then

hash(dgcar.datakeys(i))=cint(qty.text)

else

hash.remove(dgcar.datakeys(i))

end if

next

display()

End sub

</script>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
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- 王朝網路 版權所有