📄 shop.asp
字号:
<%
'将商品编号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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -