<%@ Language=VBScript %> <% option explicit %>

Dave's Kickback Page

This Active Server Page kicks back whatever values you send on a form!


<% response.write("

Today is : " & date() & ", the time is - " & time()) %>


<% dim i if request.querystring <> "" then response.write("

The GET string is: " & request.querystring) for each i in request.querystring response.write ("

" & i & " --- " & request.querystring(i)) next else response.write("

If you used Post...you get...") for each i in request.form response.write ("

" & i & " --- " & request.form(i)) next end if %>