谁有简单点的asp购物车的代码呀?谢谢拉!

来源:百度知道 编辑:UC知道 时间:2024/06/17 05:26:42

上网搜索一下,比在这里问要快得多,在百度随便输入“购物车”代码

要学习我有刚调试成功的asp.net的代码(c#)
,给我在百度发信息,如只要使用现成的,建议用极品电子商城,功能、界面还不错!

<%@ LANGUAGE="VBSCRIPT" %>
<!--#include file="util.asp" -->
<!--#include file="conn.asp" -->
<%
ProductList = Session("ProductList")
Products = Split(Request("cpbm"), ", ")
For I=0 To UBound(Products)
PutToShopBag Products(I), ProductList
Next
Session("ProductList") = ProductList

Head="以下是您所选购的物品清单"
ProductList = Session("ProductList")
If Len(ProductList) =0 Then
Response.Redirect "nothing.asp"
response.end
end if

If Request("MySelf") = "Yes" Then
ProductList = ""