ASP Quick Reference from mytat. Print it, and fold it in your pocket.
 

ASP scripts are surrounded by <% and %>.  To write some output to a browser:

<html>
<body>
<% response.write("Hello World!") %>
</body>
</html>
The default language in ASP is VBScript. To use another scripting language, insert a language specification at the top of the ASP page:
<%@ language="javascript" %>
<html>
<body>
<%
....
%>



Practice Excercise Practice now