%@ Language=VBScript %> <% option explicit 'must be before anything else %>
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"))
%>