style.asp
来自「人民医院眼科全站」· ASP 代码 · 共 17 行
ASP
17 行
<%
response.buffer=true
dim style
style=request.querystring("style")
if style="" or not isNumeric(style) then
style=1
else
style=int(style)
end if
if cookiePath<>"" then
response.cookies("style").Path=cookiePath
end if
response.cookies("style")=cstr(style)
response.cookies("style").expires=dateadd("m",1,now())
response.redirect request.servervariables("http_referer")
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?