car.asp
上传用户:syzzy1975
上传日期:2022-07-17
资源大小:670k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
  2. <%
  3. %><!--#include file="manage/inc/config.asp"--> 
  4. <!--#include file="inc/conn.asp"--> 
  5. <!--#include file="inc/chk.asp"--> 
  6. <%
  7. dim id,username,action
  8. action=request.QueryString("action")
  9. username=trim(request.cookies(cookieName)("username"))
  10. id=request.QueryString("id")
  11. set rs=server.CreateObject("adodb.recordset")
  12. select case action
  13. case "del"
  14. conn.execute "delete from orders where actionid="&request.QueryString("actionid")
  15. response.redirect "car.asp"
  16. case "add"
  17. rs.open "select id,username from orders where username='"&username&"' and id="&id&" and state=6",conn,1,1
  18. if not rs.eof and not rs.bof then
  19. call MsgBox("对不起,此商品已存在于您的购物车中,不可以重复添加!","Close","None")
  20. response.end
  21. rs.close
  22. else
  23. rs.close
  24. rs.open "select id,username,state,paid from orders",conn,1,3
  25. rs.addnew
  26. rs("id")=id
  27. rs("username")=username
  28. rs("state")=6
  29. rs("paid")=0
  30. rs.update
  31. rs.close
  32. set rs=nothing
  33. call MsgBox("商品成功添加到你的购物篮!","Close","None")
  34. response.end
  35. end if
  36. end select
  37. rs.open "select orders.actionid,orders.id,product.name,product.price1,product.price2,product.discount from product inner join orders on product.id=orders.id where orders.username='"&request.cookies(cookieName)("username")&"' and orders.state=6",conn,1,1 
  38. %>
  39. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  40. <html>
  41. <head>
  42. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  43. <title>406网络书店</title>
  44. <link href="style.css" rel="stylesheet" type="text/css">
  45. </head>
  46. <body>
  47. <!--#include file="head.htm"-->
  48. <table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
  49.   <tr>
  50.     <td width="219" align="left" valign="top"><!--#include file="uleft.asp"-->      <br></td><td width="561" align="left" valign="top"><br>        <table cellpadding="0" cellspacing="0" border="0">
  51.         <tr>
  52.           <td width="18"><img src="images/w.gif"></td>
  53.           <td style="color:#415373">购物车</td>
  54.         </tr>
  55.         </table>
  56.         <br>      <form name="form1" method="post" action="cart.asp">
  57.   <table width="96%" border=0 align=center cellpadding=2 cellspacing=2>
  58.   <tr height=20><td width=7% align=center>选 择</td>
  59.   <td width="45%" align=center>商品名称</td>
  60.   <td width="14%" align=center>市场价</td>
  61.   <td width="13%" align=center>会员价</td>
  62.   <td width="12%" align=center>折扣</td>
  63.   <td width="9%" align=center>删除</td></tr>
  64.   <%
  65. do while not rs.eof
  66. %>
  67.   <tr bgcolor=#ffffff>
  68.   <td align="center" bgcolor=#FFFFFF><input name=id type=checkbox checked value="<%=rs("id")%>"></td>
  69.   <td STYLE="PADDING-LEFT: 5px" align=center><a href=vpro.asp?id=<%=rs("id")%> target=_blank><%=rs("name")%></a></td>   
  70.   <td align=center><%=rs("price1")%>元</td>
  71.   <td align=center><font color="#FF6600"><%=rs("price2")%>元</font></td>
  72.   <td align=center><%=(rs("discount")*100)%>%</td>
  73.   <td align="center">
  74.   <a href="car.asp?action=del&actionid=<%=rs("actionid")%>"><img src=images/trash.gif width=15 height=17 border=0></a></a></td>
  75.   </tr>
  76.   <%
  77. rs.movenext
  78. loop
  79. rs.close
  80. set rs=nothing
  81. %>
  82.   <tr align="center"><td height=36 colspan=6 bgcolor=#FFFFFF><input type=submit name=Submit  value=去下订单 onclick="location='cart_t.asp'">
  83.   <%
  84. if action<>"addtocart" then
  85. %>
  86.   <input type=button name=Submit2 value=继续采购 onclick=javascript:window.close()>
  87.   <%
  88. end if
  89. %>
  90.   </td>
  91.   </tr></table>        
  92.         </form>        <p>&nbsp;</p></td>
  93.   </tr>
  94. </table>
  95. <!--#include file="foot.htm"-->
  96. </body>
  97. </html>