<%@ Language=VBScript %> <% option explicit 'must be before anything else %> CGI/ASP Response

CGI Demo Response

 

Data from the calling form: <% response.write("

Hello there, this is ASP writing

") dim tbin tbin = Request.querystring("tbox") if tbin = "" then tbin = "

Nothing received" response.write(tbin) response.write("

" & request.querystring("listbox")) response.write("

" & request.querystring("checkbox")) response.write("

" & request.querystring("rb1")) %>