Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== ASP Notes ====== ===== writing text ===== <code asp> <% response.write("Hello World!") %> <% response.write("<h2>You can use HTML tags to format the text!</h2>") %> <% response.write("<p style='color:#0000ff'>This text is styled with the style attribute!</p>") %> </code> ===== creating and using a variable ===== <code asp> <% dim name name="Donald Duck" response.write("My name is: " & name) %> </code> ===== creating an array ===== <code asp> <% Dim famname(5),i famname(0) = "Jan Egil" famname(1) = "Tove" famname(2) = "Hege" famname(3) = "Stale" famname(4) = "Kai Jim" famname(5) = "Borge" For i = 0 to 5 response.write(famname(i) & "<br />") Next %> </code> ===== For loop (with HTML Headers) ===== <code asp> <% dim i for i=1 to 6 response.write("<h" & i & ">Header " & i & "</h" & i & ">") next %> </code> ===== External Links ===== * http://www.w3schools.com/asp/default.asp docs/programming/asp/asp_notes.txt Last modified: 2008/08/03 00:25by 127.0.0.1