久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

ASP購(gòu)物車代碼超級(jí)簡(jiǎn)單

 weiledream 2010-11-13

將以下ASP購(gòu)物車代碼都保存為一個(gè)文件,,如cart.asp,,調(diào)用時(shí)比如加入購(gòu)物車直接使用鏈接cart.asp?id=商品ID即可。本例中商品數(shù)據(jù)庫(kù)表為product,,使用到商品ID,,商品名稱product_name等,在實(shí)際使用ASP購(gòu)物車代碼時(shí)將相關(guān)參數(shù)替換下,。
<%'簡(jiǎn)單ASP購(gòu)物車代碼原理
action=request.QueryString("action")
if request.QueryString("id")="" then
bookid=session("productlist")'//////////////////////////////////調(diào)入查詢物品的id
else
  if session("productlist")="" then
session("productlist")=request.QueryString("id")
bookid=request.QueryString("id")
  else
    if instr(request.querystring("id"),session("productlist"))<1 then
bookid=session("productlist")+","+request.QueryString("id")'//////////////把id全部存儲(chǔ)到bookid中類似與數(shù)組
session("productlist")=bookid
    else
bookid=session("productlist")
    end if
  end if
end if

if session("productlist")="" then'////////////////////////若id為空,,則說(shuō)明用戶沒(méi)有購(gòu)物
bookid=0
end if

if action="del" then '刪除購(gòu)物車中的某一件商品
aProducts=split(Session("ProductList"),",")
delid=cstr(trim(Request.QueryString("id")))
For i=0 To UBound(aProducts)    '循環(huán)所有商品ID
    If trim(aProducts(i))<>delid then
        '不等于被刪除的ID時(shí)則保存進(jìn)新的列表中
        sNewProducts = sNewProducts & "," & aProducts(i)
    end if
Next
Session("ProductList") = mid(sNewProducts,2)
  if session("ProductList")="" then
bookid=0
  else
bookid=Session("ProductList")
  end if
end if
%>

以下是ASP購(gòu)物車?yán)锏乃猩唐罚?lt;br><br>
<%'根據(jù)臨時(shí)存儲(chǔ)到SESSION里的商品ID分別從商品數(shù)據(jù)庫(kù)循環(huán)調(diào)出商品顯示到購(gòu)物車頁(yè)面,遇到重復(fù)ID不顯示
if bookid<>0 and bookid<>"" then
set rs=server.CreateObject("adodb.recordset")
dim sql
sql="select id,product_name from product where id in ("&bookid&") order by id" '這里替換成實(shí)際的商品數(shù)據(jù)庫(kù)及字段
rs.open sql,conn,1,1
   dim bookscount,books '定義判斷有幾個(gè)bookid
   bookscount=request.QueryString("id").count
   aa=1
   do while not rs.eof
   dim quatity '判斷input 名
Quatity = CInt( Request( "ckxp"&rs("id")) )
If Quatity <=0 Then Quatity = 1
'以下為購(gòu)物車每一件商品內(nèi)容,包含ID,、名稱,、數(shù)量及取消
%>

商品ID:<%=rs("id")%>
商品名稱:<a href="showproduct.asp?id=<%=rs("id")%>" title="<%=rs("info")%>" target="_blank"><%=rs("product_name")%></a>
訂購(gòu)數(shù)量:<input name="sl<%=aa%>" type="text" Value="1" size="3">
取消商品:<a href="?nav=m&id=<%=rs("id")%>&action=del"><font color="#FF0000" size="4" style="font-weight:bold">×</font></a>
<br>

<%'循環(huán)讀取ASP購(gòu)物車內(nèi)的商品
rs.movenext
aa=aa+1
loop
rs.close
set rs=nothing
%>
<%if bookid=0 or bookid="" then%>ASP購(gòu)物車內(nèi)沒(méi)有商品,請(qǐng)選擇需訂購(gòu)的商品,。<%end if%>

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多