<%@ Language=VBScript %> <% option explicit %> CGI/ASP Response

CGI/Active Server Page Form Demo

This form demonstrates how Active Server Pages can be used to collect data from a form.

Post method...

Enter a string:

Select an item from the list:

Check this item

Pick this    or This



CGI Demo Response

 

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

Hello there, this is ASP writing

") tbin = Request.form("tbox") if tbin = "" then tbin = "

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

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

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

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