home *** CD-ROM | disk | FTP | other *** search
- <%@ LANGUAGE="VBSCRIPT" %>
- <HTML>
- <HEAD><TITLE>Collections</TITLE></HEAD>
- <BODY>
- <H1 align="center">Request Collections</H1>
- <HR>
- <H1 align="center">Query String</H1>
- <%
- For Each item in Request.QueryString
- %>
- <STRONG><%=item%></STRONG>=<%=Request.QueryString(item)%><BR>
- <%
- Next
- %>
- <HR>
- <H1 align="center">Form</H1>
- <%
- For Each item in Request.Form
- %>
- <STRONG><%=item%></STRONG>=<%=Request.Form(item)%><BR>
- <%
- Next
- %>
- <HR>
- <H1 align="center">ClientCertificate</H1>
- <%
- For Each item in Request.ClientCertificate
- %>
- <STRONG><%=item%></STRONG>=<%=Request.ClientCertificate(item)%><BR>
- <%
- Next
- %>
- <HR>
- <H1 align="center">Server Variables</H1>
- <%
- For Each item in Request.ServerVariables
- %>
- <STRONG><%=item%></STRONG>=<%=Request.ServerVariables(item)%><BR>
- <%
- Next
- %>
- <HR>
- <H1 align="center">Cookies</H1>
- <%
- For Each item in Request.Cookies
- %>
- <STRONG><%=item%></STRONG>=<%=Request.Cookies(item)%><BR>
- <%
- Next
- %>
- </BODY>
- </HTML>