📄 showcookies.asp
字号:
<%@ Language=VBScript %>
<%
dim ident
ident = " "
function ShowCookies()
dim item, key, str
str = ""
for each item in Request.Cookies
if Request.Cookies(item).HasKeys then
str = str & "<" & item & "><BR>"
for each key in Request.Cookies(item)
str = str & ident & "<" & key & " value=""" & Request.Cookies(item)(key) & """ /><BR>"
next
str = str & "</" & item & "><BR>"
else
str = str & "<" & item & " value=""" & Request.Cookies(item) & """ /><BR>"
end if
next
ShowCookies = str
end function
Response.Write ShowCookies()
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -