ASP Flush 方法

asp flush 方法

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

flush 方法立即发送已缓存的 html 输出。

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

语法

response.flush

实例

<%
response.buffer=true
%>


i write some text, but i will control when the
text will be sent to the browser.


the text is not sent yet. i hold it back!


ok, let it go!


<%
response.flush
%>



输出:

i write some text, but i will control when the
text will be sent to the browser.

the text is not sent yet. i hold it back!

ok, let it go!

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