Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 4358 |
dpurdie |
1 |
' Use this code snippet by inserting the following line
|
|
|
2 |
' <SCRIPT LANGUAGE="VBScript" RUNAT=SERVER SRC="common/VarDump.vbs"></SCRIPT>
|
|
|
3 |
Dim strName
|
|
|
4 |
Response.Write "<pre><br>Form Variables"
|
|
|
5 |
For Each strName in request.form
|
|
|
6 |
Response.Write "<br> " & strName & ": " & request.form(strName)
|
|
|
7 |
Next
|
|
|
8 |
Response.Write "<br>String Variables"
|
|
|
9 |
For Each strName in request.querystring
|
|
|
10 |
Response.Write "<br> " & strName & ": " & request.querystring(strName)
|
|
|
11 |
Next
|
|
|
12 |
Response.Write "</pre>"
|
|
|
13 |
|