<%@ Language = VBScript %> <% Option Explicit %> Form Posting (Get Method with QueryString) Form Posting (Get Method with QueryString)

This page will take the information entered in the form fields, and use the GET method to send the data to an ASP page.

First Name:

Last Name:


<% Response.Write(Request.QueryString("fname"))%>
<% Response.Write(Request.QueryString("lname"))%>