簡單購物車教程

2022-04-01 15:42:05 字數 2463 閱讀 8217

資料庫字段

表:pro_talbe:

id 產品編號

proname 產品名稱

simages 產品小圖 

表o_rder:

id 訂單編號

p_roid 產品編號

m_um 產品數量

d_time 訂購時間

表co_table:

id 客戶編號

nn_ame 客戶姓名

tt_el 聯絡**

ee_m_ail 客戶郵箱

+++++++++++++++++++++++

index.asp原始碼

+++++++++++++++++++++++

set recordset1 = server.createobject("adodb.recordset")

recordset1.activeconnection = mm_conn_string

recordset1.source = "select * from pro_table"

recordset1.cursortype = 0

recordset1.cursorlocation = 2

recordset1.locktype = 3

recordset1.open()

recordset1_numrows = 0

%>

dim repeat1__numrows

repeat1__numrows = -1

dim repeat1__index

repeat1__index = 0

recordset1_numrows = recordset1_numrows + repeat1__numrows

%>

untitled document

while ((repeat1__numrows <> 0) and (not recordset1.eof)) 

%>  

&quantity=1">購買

repeat1__index=repeat1__index+1

repeat1__numrows=repeat1__numrows-1

recordset1.movenext()

wend

%>

recordset1.close()

%>

列出產品,這裡有乙個要點就是:&quantity=1">購買

這裡傳遞了兩個引數:產品id「productid" 數量:「quantity"

+++++++++++++++++++++++++

下面是cart.asp的原始碼:

+++++++++++++++++++++

if not isobject(session("cart")) then

set session("cart")=createobject("scripting.dictionary")

end if

set cart=session("cart")

productid=cstr(request("productid"))

dim detail(1)

detail(0)=int(request("quantity"))

if request("productid")<>"" then

if cart.exists(productid) then

cart.remove(productid)

end if

cart.add productid,detail

end if

keys=cart.keys

items=cart.items

set session("cart")=cart

%>

浙江廣源印刷包裝****

href="index/index.css" type=text/css rel=stylesheet>

商品名稱

購買數量

更新 刪除

list__mmcolparam = keys(i) %>

list.activeconnection = mm_conn_string

list.source = "select * from pro_table where id = " + replace(list__mmcolparam, "』", "』』") + ""

list.cursortype = 0

list.cursorlocation = 2

list.locktype = 3

list.open()

%>

list.close()

%>  

總價合計:  ¥

繼續選購 付款

本新聞共2頁,當前在第1頁  1  2  

簡單購物車

簡單購物車,要求如下 實現列印商品詳細資訊,使用者輸入商品名和購買個數,則將商品名,購買個數加入購物列表,如果輸入為空或其他非法輸入則要求使用者重新輸入msg dic good l while true for k in msg dic print k,msg dic k name input 商品...

簡單購物車實現

作業二 簡單購物車 實現列印商品詳細資訊,使用者輸入商品名和購買個數,則將商品名,購買個數加入購物列表,如果輸入為空或其他非法輸入則要求使用者重新輸入shopping list while true print 商品選項 msg dic for k,v in msg dic.items 033 44...

購物車(註冊 登入 購物 購物車 結帳)

購物車 註冊 登入 購物 購物車 結帳 shopping car dict dict money 0 def input username pwd username input username pwd input pwd return username,pwd def goods get with...