最新的Web開發教程
 

ASP End方法


<完全反應對象參考

End方法停止處理腳本,並返回當前結果。

Note:如果將Response.Buffer已設置為true,此方法將刷新緩衝區。 如果你不希望任何輸出返回給用戶,你應該首先調用Response.Clear。

句法

Response.End

例子

<html>
<body>
<p>I am writing some text. This text will never be
<%
Response.End
%>
finished! It's too late to write more!</p>
</body>
</html>

Output:

I am writing some text. This text will never be

<完全反應對象參考