shop.asp
来自「非常棒的网上购物系统www.yuhuanrd.gov.cn www.yuhuan」· ASP 代码 · 共 22 行
ASP
22 行
<%
'将商品编号Prodid放入购物商品列表ProductList
ProductList = Session("ProductList")
Products = Request("Prodid")
Products = replace(products,"'","")
Products = replace(products," ","")
if productlist="" and Products="" then
response.redirect "../error.asp?error=007"
response.end
end if
If Len(ProductList) = 0 Then
ProductList = "'" & Products & "'"
ElseIf InStr( ProductList, Products ) <= 0 Then
ProductList = ProductList & ", '" & Products & "'"
End If
Session("ProductList") = ProductList
response.redirect "check.asp"
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?