View Full Version : Simple ASP Tutorials


Phil
01-30-2005, 03:45 PM
For you people who use asp, heres some tutorials I made:

Simple Write Text:
<%
response.write "Hello World
%>
OR
<%
response.write("Hello World")
%>
------
Request Form Fields on another Page:
*Using the POST Method
<%
response.write request.form("FORMNAME")
%>

*Using GET Method
<%
response.write request.querystring("FORMNAME")
%>
-------

If you anyone needs help with asp, ask me and i'll be glad to help!