簡單 ASP 頁面的結構
<%@ Language="VBScript" CodePage = 65001 %>
<%
Option Explicit
Response.Charset = "UTF-8"
Response.CodePage = 65001
%>
<!doctype html>
<html>
<head>
<title>My First Classic ASP Page</title>
</head>
<body>
<%="Hello World"%>
</body>
</html>
這是 Classic ASP 頁面的一個非常基本的示例,它將 Hello World
短語與標準 HTML 的其餘部分一起返回給瀏覽器。HTML 部分是靜態的,即伺服器將按原樣將它們傳送到瀏覽器。由 <% %>
分隔的部分是伺服器在將其傳送到客戶端之前實際處理的部分。
請注意,<%="stuff"%>
語法是 <%Response.Write "stuff"%>
的簡寫。