أحدث البرامج التعليمية وتطوير الشبكة
 

ASP الطريقة دافق


<كاملة كائن الاستجابة المرجعي

يرسل طريقة تدفق الانتاج HTML مخزنة على الفور.

Note: إذا response.Buffer غير صحيح، وهذا الأسلوب يؤدي إلى خطأ وقت التشغيل.

بناء الجملة

Response.Flush

مثال

<%
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>

Output:

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!

<كاملة كائن الاستجابة المرجعي