ASP (Active Server Pages) is a powerful tool for generating dynamic, interactive web pages.

ASP form syntax

The Request.QueryString and Request.Form commands are used to retrieve information from a form, such as user input.

ASP form example

<body>
Welcome
<%
response.write(request.querystring("fname"))
response.write(" " & request.querystring("lname"))
%>
</body>