Content:
1. Return text
2. Process arguments


ASP stands fro Automated Server Pages. ASP helps with HTML document generation on server.

1. Return text

Create asp.asp, copy it to c:\intetpub\wwwroot and open http://localhost/asp.asp in your browser

ASP
<%
 response.write("Hello from ASP")
%>
response.write will write to the returned html file content.

2. Process arguments

Create asp_post.asp, copy it to c:\intetpub\wwwroot. Use jQuery.html example and click Post jQuery or Post for form button.

ASP
<%
 dim id, name
 id=Request.Form("id")
 name=Request.Form("name")
 Response.Write("id=" & id & " name=" & name)
%>