home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / Code / ch38 / Collections.asp < prev    next >
Encoding:
Text File  |  1997-06-29  |  975 b   |  52 lines

  1. <%@ LANGUAGE="VBSCRIPT" %>
  2. <HTML>
  3. <HEAD><TITLE>Collections</TITLE></HEAD>
  4. <BODY>
  5. <H1 align="center">Request Collections</H1>
  6. <HR>
  7. <H1 align="center">Query String</H1>
  8. <%
  9. For Each item in Request.QueryString
  10. %>
  11. <STRONG><%=item%></STRONG>=<%=Request.QueryString(item)%><BR>
  12. <%
  13. Next
  14. %>
  15. <HR>
  16. <H1 align="center">Form</H1>
  17. <%
  18. For Each item in Request.Form
  19. %>
  20. <STRONG><%=item%></STRONG>=<%=Request.Form(item)%><BR>
  21. <%
  22. Next
  23. %>
  24. <HR>
  25. <H1 align="center">ClientCertificate</H1>
  26. <%
  27. For Each item in Request.ClientCertificate
  28. %>
  29. <STRONG><%=item%></STRONG>=<%=Request.ClientCertificate(item)%><BR>
  30. <%
  31. Next
  32. %>
  33. <HR>
  34. <H1 align="center">Server Variables</H1>
  35. <%
  36. For Each item in Request.ServerVariables
  37. %>
  38. <STRONG><%=item%></STRONG>=<%=Request.ServerVariables(item)%><BR>
  39. <%
  40. Next
  41. %>
  42. <HR>
  43. <H1 align="center">Cookies</H1>
  44. <%
  45. For Each item in Request.Cookies
  46. %>
  47. <STRONG><%=item%></STRONG>=<%=Request.Cookies(item)%><BR>
  48. <%
  49. Next
  50. %>
  51. </BODY>
  52. </HTML>