<% Dim strName as String Dim strAddress as String strName = Request.Form( "Name" ) strAddress = Request.Form( "Address" ) %> The name that was submitted was: <%=strName%>
The address that was submitted was: <%=strAddress%>