showcookies.asp
来自「学生档案与成绩管理(1)学生档案管理:记录每个学生的档案信息」· ASP 代码 · 共 30 行
ASP
30 行
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?