%
Dim IsDebug
IsDebug = True 'Enable
If IsDebug Then %>
| Session: | Application: |
|
<%
For each field in Session.Contents
Response.Write ("" & field & ": " & Session.Contents(field) & " ") Next %> |
<%
For each field in Application.Contents
Response.Write ("" & field & ": " & Application.Contents(field) & " ") Next %> |
| GET/POST Data: |
|
Action: CMD: QueryString: Form: |
<%= Request.Form ("Action") %> <%= Request.QueryString ("cmd") %> <%= Request.QueryString %> <%= Request.Form %> |