ASP Flush 方法
asp flush 方法
完整的 response 对象参考手册flush 方法立即发送已缓存的 html 输出。
注意:假如 response.buffer 为 false ,此方法会引起一个 run-time 错误。
语法
response.flush
实例
<%
response.buffer=true
%>
<%
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.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 对象参考手册
相关文章
- ASP 使用 CDOSYS 发送电子邮件
- ASP TextStream 对象
- ASP File 对象
- ASP AdRotator
- ASP Content Linking
- ASP Content Rotator
- AJAX 简介
- AJAX 数据库
- 在自己的 PC 上运行 ASP
- ASP AtEndOfStream 属性
- ASP Line 属性
- ASP Path 属性
- ASP Move 方法
- ASP Item 属性
- ASP AppendToLog 方法
- ASP Flush 方法
- ASP Form 集合
- ASP CodePage 属性
- ASP ScriptTimeout 属性
- ASP CreateFolder 方法