分享
 
 
 

购物车

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

castclass.asp

<%

Class ShopBag

'放商品的空间

Private ProSpace

'商品信息个数

Private ItemsCout

'=============================================================

' 共有的

'=============================================================

'方法名:PutAPro

'参数:一个存有商品信息的数组--ProData

'作用:将一个商品放入购物车

'返回值:

'成功放入商品,返回true

'商品存在,返回false

Public Function PutAPro(ByRef ProData)

'size:'最后一个

dim size,result,flag

ItemsCout = ubound(ProData) '商品信息个数

GetPro

if CreateSpace then

'有商品需要检测商品是否存在

MyPrint "有商品需要检测商品是否存在"

flag = CheckProExists(ProData(0))

else

flag = false '购物车没有商品

MyPrint "购物车没有商品"

end if

if not flag then

size = Ubound(ProSpace)

for i = 0 to ItemsCout

ProSpace(size,i) = ProData(i)

next

MyPrint "放入一个商品....<br>"

SavePro

result = true

else

result = false

end if

PutAPro = result

End Function

'----------------------------------------------

'得到所有商品

Public Function GetAllPro(ByRef ProList)

ProList = Session("ProID")

End Function

'----------------------------------------------

'更新产品个数

Public Function UpdatePro(ByRef ProNumList)

dim ProNumData

GetPro

ProNumData = split(ProNumList,",")

for i =0 to Ubound(ProNumData)

ProSpace(i,3) = Cint(trim(ProNumData(i)))

next

SavePro

MyPrint "更新了所有商品个数"

End Function

'删除一个商品

Public Function DeleteAPro(id)

MyPrint "准备删除一个商品"

dim count

GetPro

count = UBound(ProSpace)

if count=0 then

MyPrint "商品已经是最后一个了, 将session设为null"

Session("ProID") = null

else

redim tempAr(count-1,3)

MyPrint "开始查找要删除的商品id..."

for i = 0 to count

if Cint(ProSpace(i,0)) = Cint(id) then

MyPrint "找到ID,删除!"

for j=i to count-1

ProSpace(j,0) = ProSpace(j+1,0)

ProSpace(j,1) = ProSpace(j+1,1)

ProSpace(j,2) = ProSpace(j+1,2)

ProSpace(j,3) = ProSpace(j+1,3)

next

exit for

end if

next

for i = 0 to count-1

tempAr(i,0) = ProSpace(i,0)

tempAr(i,1) = ProSpace(i,1)

tempAr(i,2) = ProSpace(i,2)

tempAr(i,3) = ProSpace(i,3)

next

Session("ProID") = tempAr

end if

End Function

'---------------------------------------------

'得到商品的某项信息列表 , 号隔开

Public Function GetProList(n)

dim result

GetPro

if isnull(ProSpace) then

result = null

else

for i =0 to ubound(ProSpace)

if i = 0 then

result = ProSpace(i,n)

else

result =result&","&ProSpace(i,n)

end if

next

end if

KillMe

GetProList = result

End Function

'==================================================================

'=================================================================

' 私有的

'=================================================================

'检测商品是否已经存在

'存 在 返回 true

'不存在返回 false

Private Function CheckProExists(ProID)

MyPrint "检测商品是否存在?<br>"

dim result

result = false

for i = 0 to Ubound(ProSpace)

if Cint(ProSpace(i,0)) = Cint(ProID) then

result = true

End if

next

CheckProExists = result

End Function

'------------------------------------------------

'作用:

'开辟存放物品的空间

'返回值:

'新开大小返回 false

'重构空间大小返回 true

Private Function CreateSpace()

dim result

MyPrint "开始开辟空间...<br>"

'ReSize: 空间大小

dim ReSize

'计算需要空间大小

if isarray(ProSpace) then '已经有商品了

MyPrint "已有空间,需要重构空间大小!<br>"

ReSize = UBound(ProSpace)+1

MyRedim ProSpace,ReSize

result = true

MyPrint "重构了空间大小=+1...<br>"

else

redim ProSpace(0,ItemsCout)

result = false

MyPrint "没有空间,开辟!...<br>"

End if

CreateSpace = result

End Function

'----------------------------------------------

'重新构造一个数组

private Function MyRedim(byRef aArray,ByVal Size)

MyPrint "开始重构空间大小...<br>"

redim TmpArray(Size,ItemsCout)

'备份信息

for i = 0 to Ubound(aArray)

for j =0 to ItemsCout

TmpArray(i,j) = aArray(i,j)

next

next

redim aArray(Size,ItemsCout)

'还原信息

for j = 0 to ubound(TmpArray)

for k =0 to ItemsCout

aArray(j,k) = TmpArray(j,k)

next

next

End Function

'-----------------------------------------------

'保存商品

Private Function SavePro

Session("ProID") = ProSpace

MyPrint "保存购物车....<br>"

KillMe

MyPrint "释放了空间..<br>"

End Function

'----------------------------------------------

'从Session中取出商品

Private Function GetPro

ProSpace = Session("ProID")

MyPrint "将Session中的商品放入了购物车....<br>"

End Function

'----------------------------------------------

'释放空间

private Function KillMe

ProSpace = null

End Function

'----------------------------------------------

End Class

%>

使用:

<!--#include file="CastClass.asp"-->

<%

'显示操作过程

Function MyPrint(str)

Response.write str

End Function

dim aShowBag,ProData,ProList

ProData = Array(1,"ProName","ProPrice","ProNum")

set aShowBag = new ShopBag

state = aShowBag.PutAPro(ProData) '放入一个商品

ProData= null

aShowBag.GetAllPro ProList

if state then

Response.Write "放入一个商品<br>"

else

Response.Write "商品已经存在<br>"

end if

Set ShowBag = nothing

if isarray(ProList) then

for i = 0 to ubound(ProList)

for j =0 to 3

Response.Write ProList(i,j)&"=="

next

Response.Write "<br>============<br>"

next

else

Response.write "没有商品"

End If

%>

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