%@ Language=VBScript %> <% option explicit %>
This form demonstrates how Active Server Pages can be used to collect data from a form.
Post method...
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")) %>