style.asp
来自「9seek 留言本源代码5.0版」· ASP 代码 · 共 13 行
ASP
13 行
<%
response.buffer=true
dim style
style=request.querystring("style")
if style="" or not isNumeric(style) then
style=1
else
style=int(style)
end if
response.cookies("style")=style
response.cookies("style").expires=dateadd("m",1,now())
response.redirect request.servervariables("http_referer")
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?