最新的Web開發教程
 

ASP Write方法


<完全反應對象參考

Write方法將指定的字符串寫入到輸出。

句法

Response.Write variant

參數 描述
variant 需要。 要寫入的數據

例子

實施例1

<%
Response.Write "Hello World"
%>

Output:

Hello World

實施例2

<%
name="John"
Response.Write(name)
%>

Output:

John

實施例3

<%
Response.Write("Hello<br>World")
%>

Output:

Hello
World

<完全反應對象參考