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 strNameResponse.Write "<pre><br>Form Variables"For Each strName in request.formResponse.Write "<br> " & strName & ": " & request.form(strName)NextResponse.Write "<br>String Variables"For Each strName in request.querystringResponse.Write "<br> " & strName & ": " & request.querystring(strName)NextResponse.Write "</pre>"