📄 productoption.asp
字号:
<%
dim ShowStyle,SortID,SortPath
ShowStyle=request.queryString("Style")
SortID=request.queryString("SortID")
SortPath=request.queryString("SortPath")
select case ShowStyle
case "Shopwindow"
response.cookies("Style")="Shopwindow"
case "List"
response.cookies("Style")="List"
case "Brief"
response.cookies("Style")="Brief"
case else
response.cookies("Style")="Shopwindow"
end select
response.cookies("Style").expires = DateAdd("m",1,now)
if SortID<>"" and SortPath<>"" then
response.write "<script>window.location.href('ProductList.asp?SortID="&SortID&"&SortPath="&SortPath&"');</script>"
else
response.write "<script>window.location.href('ProductList.asp');</script>"
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -