frmhello.asp
Page source
interaction with form -- response
Hello Larry, my friend.
Script listing
interaction with form -- response
<%
dim strName 'the name the user entered on the form
strName = request.form ("txtName")
response.write ("Hello " & strName & ", my friend.")
%>
Explanation
This script is called by frmhello.htm. It uses the form method of the request object to read the name the user entered in the form. That is sent back to the user in a simple HTML page using the write method of the response object.