⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showcookies.asp

📁 学生档案与成绩管理(1)学生档案管理:记录每个学生的档案信息
💻 ASP
字号:
<%@ Language=VBScript %>
<%

dim ident

ident = "&nbsp;&nbsp;&nbsp;&nbsp;"

function ShowCookies()
	dim item, key, str
	str = ""
	
	for each item in Request.Cookies
		if Request.Cookies(item).HasKeys then
			str = str & "&lt;" & item & "&gt;<BR>"
			for each key in Request.Cookies(item)
				str = str & ident & "&lt;" & key & " value=""" &  Request.Cookies(item)(key)  & """&nbsp;/&gt;<BR>" 
			next
			str = str & "&lt;/" & item & "&gt;<BR>"
		else
			str = str & "&lt;" & item & " value=""" & Request.Cookies(item) & """&nbsp;/&gt;<BR>"
		end if
	next
	ShowCookies = str
end function

Response.Write ShowCookies()

%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -