
| Here we are telling ASP to make
JavaScript the default language for this page <% @ Language="JavaScript" %> <HTML> <BODY> <CENTER> <H1>Results from the Form</H1> The Request Object retrieves the values that the client
browser passed to the server during an HTTP request. This includes
parameters passed from an HTML form using either the Below we are retrieving the entries in the "name" and
"email" fields. Compare this with the Perl CGI script where we
had to know if it was a ********* ASP Version ********* Your Name is <% = Request("name") %> and your Email is <% = Request("email") %>. ********* Perl Version ********* Your Name is $INPUT{name} and your Email is $INPUT{email}. </CENTER> </BODY> |