ASP 플러시 방법


❮ 완전한 응답 객체 참조

Flush 메서드는 버퍼링된 HTML 출력을 즉시 보냅니다.

참고: response.Buffer가 false인 경우 이 메서드는 런타임 오류를 발생시킵니다.

통사론

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!

❮ 완전한 응답 객체 참조