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

ASP variables syntax

Variables are used to store information.

ASP variables example

<!DOCTYPE html>
<html>
<body>
<%
dim name
name="Donald Duck"
response.write("My name is: " & name)
%>
</body>
</html>