| 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
%>
|
<% next
else
%>
| <% =ChkString(key, "display") %> |
<%
if Request.Cookies(key) = "" then
Response.Write " "
else
Response.Write ChkString(CStr(Request.Cookies(key)), "display")
end if
%>
|
<%
end if
next %>
| Session variables |
<% for each key in Session.Contents
if left(key, len(strCookieUrl)) = strCookieUrl or left(key, len(strUniqueID)) = strUniqueID then
%>
| <% =ChkString(key, "display") %> |
<%
if Session.Contents(key) = "" then
Response.Write " "
else
Response.Write ChkString(CStr(Session.Contents(key)), "display")
end if
%>
|
<%
end if
next
%>
| Application variables |
<% for each key in Application.Contents
if left(key, len(strCookieUrl)) = strCookieUrl or left(key, len(strUniqueID)) = strUniqueID then
%>
| <% = ChkString(key, "display") %> |
<%
if Application.Contents(key) = "" then
Response.Write " "
else
Response.Write ChkString(CStr(Application.Contents(key)), "display")
end if
%>
|
<%
end if
next
%>