Variable Name |
Value |
General information |
strCookieUrl |
<%=ChkString(StrCookieUrl, "display")%> |
strUniqueID |
<%=ChkString(StrUniqueID, "display")%> |
strAuthType |
<%=ChkString(strAuthType, "display")%> |
strDBNTSQLName |
<%=ChkString(strDBNTSQLName, "display")%> |
strDBNTUserName |
<%=ChkString(STRdbntUserName, "display")%> |
strDBType |
<%=ChkString(strDBType, "display")%> |
Cookies |
<%
for each key in Request.Cookies
if Request.Cookies(key).HasKeys then
for each subkey in Request.Cookies(key)
%>
<% =chkString(key, "display") %> (<% =chkString(subkey, "display") %>) |
<%
if Request.Cookies(key)(subkey) = "" then
Response.Write " "
else
Response.Write ChkString(CStr(Request.Cookies(key)(subkey)), "display")
end if
Response.Write " | " & vbNewline & _
"
" & vbNewline
next
else
%>
<% =chkString(key, "display") %> |
<%
if Request.Cookies(key) = "" then
Response.Write " "
else
Response.Write ChkString(CStr(Request.Cookies(key)), "display")
end if
Response.Write " | " & vbNewline & _
"
" & vbNewline
end if
next
%>
Session variables |
<%
for each key in Session.Contents
if left(lcase(key), len(strCookieUrl)) = lcase(strCookieUrl) or left(lcase(key), len(strUniqueID)) = lcase(strUniqueID) then
%>
<% =ChkString(key, "display") %> |
<%
if Session.Contents(key) = "" then
Response.Write " "
else
Response.Write chkString(CStr(Session.Contents(key)), "display")
end if
Response.Write " | " & vbNewline & _
"
" & vbNewline
end if
next
%>
Application variables |
<%
for each key in Application.Contents
if left(lcase(key), len(strCookieUrl)) = lcase(strCookieUrl) or left(lcase(key), len(strUniqueID)) = lcase(strUniqueID) then
%>
<% = chkString(key, "display") %> |
<%
if Application.Contents(key) = "" then
Response.Write " "
else
Response.Write chkString(CStr(Application.Contents(key)), "display")
end if
Response.Write " | " & vbNewline & _
"
" & vbNewline
end if
next
Response.Write "
" & vbNewline & _
"