ASP tutorial


ASP (Active Server Pages) is a powerful tool for generating dynamic interactive web pages.

In our ASP tutorial, you will learn about ASP and how to execute scripts on the server.

Start learning ASP now!

Learn ASP through examples

The ASP tutorial on this site contains more than 100 examples.

Our ASP online examples allow you to learn ASP more easily. The examples include the source code and running results of ASP.

Instance

<!DOCTYPE html>
<html>
<body>
<%
response.write("My first ASP script!")
%>
</body>
</html>

Run Instance»

Click the "Run Instance" button to view the online instance

Click the "Demo Instance" button to view the online instance running results.


ASP Reference Manual

At W3CSchool, we provide you with a complete ASP reference manual, which includes built-in objects and components, as well as their properties and methods.

ASP Reference Manual

ASP Example

Learn through examples! ASP scripts can only be executed on the server side, so the ASP code cannot be viewed in the browser, only the pure HTML code output by ASP. In W3CSchool, each instance can reveal previously hidden ASP code. This way, you can more easily understand how they work.

ASP instance!