ASP form


  Translation results:

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

ASP formsyntax

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

ASP formexample

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

Home

Videos

Q&A