Return simple text

<%
response.write("Hello from ASP")
%>


response.write will write to the returned html file content.

More info and samples on: www.devarchweb.net

Process arguments

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





More info and samples on: www.devarchweb.net