亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP Flush 方法

response 對(duì)象參考手冊(cè)

定義和用法

Flush 方法立即發(fā)送已緩存的 HTML 輸出。

注釋?zhuān)?/span>假如 response.Buffer 為 false ,此方法會(huì)引起一個(gè) run-time 錯(cuò)誤

語(yǔ)法

Response.Flush

實(shí)例

<%
Response.Buffer=true
%>
<html>
<body>
<p>I write some text, but I will control when the
text will be sent to the browser.</p>
<p>The text is not sent yet. I hold it back!</p>
<p>OK, let it go!</p>
<%
Response.Flush
%>
</body>
</html>

輸出:

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 對(duì)象參考手冊(cè)