ASP Clear 方法

定义和用法

Clear 方法清空任何已缓冲的 HTML 输出。

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

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

语法

  1. response.Clear

实例

  1. <%
  2. response.Buffer=true
  3. %>
  4. <html>
  5. <body>
  6. <p>This is some text I want to send to the user.</p>
  7. <p>No, I changed my mind. I want to clear the text.</p>
  8. <%
  9. response.Clear
  10. %>
  11. </body>
  12. </html>

输出:

  1. (nothing)

response 对象参考手册