ตัวอย่างแฟ้ม a.asp ที่สร้างขึ้นด้วย notepad <html> <head><title>hello</title></head> <body> <% response.write ("hello, kim heesun") %> </body> </html> หรือ แฟ้ม b.asp <% response.write ("<html><body>") response.write ("hello, kim heesun") response.write ("</body></html>") %> หรือ แฟ้ม c.asp :: อ่านข้อมูลจาก DSN ใน ODBC มาแสดงผล <% set conn = server.createobject("adodb.connection") conn.open "cust", "changetousername", "changetopassword" sql = "select * from cust" set rs = conn.execute(sql) do while not rs.eof response.write(rs("cust") & " " & rs("custname") & "<br>") rs.MoveNext loop conn.close set rs = nothing set conn = nothing %>