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

ASP basic syntax syntax

ASP files usually contain HTML tags, just like HTML files. However, ASP files can also contain server scripts, which are surrounded by the delimiters <% and %>.

Server scripts are executed on the server and can contain legal expressions, statements, procedures or operators in the scripting language you choose.

ASP basic syntax example

<!DOCTYPE html>
<html>
<body>
<%
response.write("Hello World!")
%>
</body>
</html>