最新的Web開發教程
 

ASP清除方法


<完全反應對象參考

Clear方法清除所有緩衝的HTML輸出。

Note:此方法不清除響應頭,只響應主體。

Note:如果將response.buffer是假的,這種方法會導致運行時錯誤。

句法

response.Clear

例子

<%
response.Buffer=true
%>
<html>
<body>
<p>This is some text I want to send to the user.</p>
<p>No, I changed my mind. I want to clear the text.</p>
<%
response.Clear
%>
</body>
</html>

Output:

(nothing)

<完全反應對象參考