1. Return text
2. Process arguments
ASP stands fro Automated Server Pages. ASP helps with HTML document generation on server.
1. Return text
ASP
<%
response.write("Hello from ASP")
%>
response.write will write to the returned html file content.
2. Process arguments
ASP
<%
dim id, name
id=Request.Form("id")
name=Request.Form("name")
Response.Write("id=" & id & " name=" & name)
%>