productoption.asp

来自「最好的自助建站系统!!最好的自助建站系统!!」· ASP 代码 · 共 22 行

ASP
22
字号
<%
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 + =
减小字号Ctrl + -
显示快捷键?