ASP Flush পদ্ধতি
সংজ্ঞা ও ব্যবহার
Flush পদ্ধতি তাৎক্ষণিকভাবে সংগৃহীত এইচটিএমএল আউটপুট পাঠায়
মন্তব্য:যদি response.Buffer false হোক, এই পদ্ধতিটি একটি run-time ত্রুটি উত্পন্ন করতে পারে
স্ক্রিপ্ট
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>
输出:
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!