Helping ordinary people create extraordinary websites!
HOME TUTORIALS SCRIPTS WEB HOSTING BLOG FORUM
Get Our Newsletter
Your Email:

Your First ASP Page

By Amrit Hallan
2004-06-09


A typical ASP page looks like


<%@Language=VBScript%>
<% Option Explicit %>
<html>
<head>
<title>
</title>
</head>
<body>
<%
Dim SayThis
SayThis = "Finally, I'm learning ASP!"
Response.Write SayThis
%>
</body>
</html>

Tutorial Pages:
» Your first ASP page
» A typical ASP page looks like
» ASP wrap up


 | Bookmark
Related Tutorials:
» Decision Making and Looping
» Arrays in ASP
» Emailing Form Data with ASP
» Sending HTML Email with ASP
» Dumping Form Information Onto a Web Page
» Installing Personal Web Server