clear.asp:清空所购全部物品!
<!–#include file="util.asp" –>
<%
head="您放入购物袋的物品已全数退回!"
dbpath = server.mappath("shopbag.mdb")
set conn = server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq=" & dbpath
session("productlist") = ""
session("first")="yes"
%>
<html>
<head><title><%=head%></title></head>
<body background="b01.jpg">
<h2 align=center><%=head%><hr></h2>
<center>
<a href=check.asp>查看购物袋</a> <a href=clear.asp>退回所有物品</a><p>
<% listcategory conn %>
</center>
</body>
</html>
