ASP Clear 方法

asp clear 方法

response 对象参考手册 完整的 response 对象参考手册

clear 方法清空任何已缓冲的 html 输出。

注意:此方法无法清除响应的头部,只能清空响应的正文。

注意:假如 response.buffer 为 false,那么此方法会引起一个 run-time 错误。

语法

response.clear

实例

<%
response.buffer=true
%>


this is some text i want to send to the user.


no, i changed my mind. i want to clear the text.


<%
response.clear
%>



输出:

(nothing)

response 对象参考手册 完整的 response 对象参考手册
相关文章