ASP Flush 方法
asp flush 方法

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!

相關文章
- 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 方法