最新的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)

<完全反应对象参考