summaryrefslogtreecommitdiffstats
path: root/tests/syntax-tests/highlighted/ASP/test.asp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/syntax-tests/highlighted/ASP/test.asp')
-rw-r--r--tests/syntax-tests/highlighted/ASP/test.asp36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/syntax-tests/highlighted/ASP/test.asp b/tests/syntax-tests/highlighted/ASP/test.asp
new file mode 100644
index 00000000..db610895
--- /dev/null
+++ b/tests/syntax-tests/highlighted/ASP/test.asp
@@ -0,0 +1,36 @@
+<html>
+<body>
+<!-- #include file ="headers\header.inc" -->
+
+<%
+For i = 0 To 5
+Response.Write("The number is " & i & "<br />")
+Next
+%>
+
+<%
+Response.Write("Hello World!")
+%>
+
+<%
+Dim x(2,2)
+x(0,0)="Volvo"
+x(0,1)="BMW"
+x(0,2)="Ford"
+x(1,0)="Apple"
+x(1,1)="Orange"
+x(1,2)="Banana"
+x(2,0)="Coke"
+x(2,1)="Pepsi"
+x(2,2)="Sprite"
+for i=0 to 2
+response.write("<p>")
+for j=0 to 2
+response.write(x(i,j) & "<br />")
+next
+response.write("</p>")
+next
+%>
+
+</body>
+</html>