Subversion Repositories DevTools

Rev

Rev 4358 | Blame | Compare with Previous | Last modification | View Log | RSS feed

' Use this code snippet by inserting the following line
'  <SCRIPT LANGUAGE="VBScript" RUNAT=SERVER SRC="common/VarDump.vbs"></SCRIPT> 
Dim strName
Response.Write "<pre><br>Form Variables" 
For Each strName in request.form
    Response.Write "<br>  " & strName & ": " & request.form(strName)
Next
Response.Write "<br>String Variables"  
    For Each strName in request.querystring
    Response.Write "<br>  " & strName & ": " & request.querystring(strName)
Next
Response.Write "</pre>"