</>
Skip to content
ASP lessons (4/40)

ASP — Syntax

Script Block

<%
Dim x
x = 5
Response.Write(x)
%>

HTML with ASP

<html>
<body>
<%
Response.Write("<h1>Hello!</h1>")
%>
</body>
</html>

Inline Expressions

<%= "Hello, World!" %>
<%= 5 + 3 %>

Comments

<%-- This is a comment --%>

' This is also a comment

Server-Side Includes

<!--#include file="header.asp"-->
<!--#include virtual="/includes/footer.asp"-->

Code Blocks

<%
Sub MySub()
    Response.Write("Hello from sub")
End Sub

Function MyFunction(x)
    MyFunction = x * 2
End Function
%>

Mini Practice

  1. Use script blocks
  2. Output with Response.Write
  3. Add comments
  4. Use server-side includes

Up Next

Continue with Variables — using variables.

Related Topics

Frequently Asked Questions about Syntax

What is Syntax in ASP?

Syntax is a fundamental concept in ASP. This lesson explains it step by step with clear examples, making it easy for beginners to understand.

How do I learn Syntax?

Start by reading the explanation above, then try the code examples. Practice by modifying the examples and experimenting with different values. Hands-on practice is the best way to learn Syntax.

Why is Syntax important in ASP?

Syntax is essential for ASP development. Understanding this concept will help you write better code and solve real-world problems more effectively.