ASP Buffer Property
Complete Response Object Reference
The Buffer property specifies whether to buffer the output or not. When the
output is buffered, the server will hold back the response to the browser until all of the
server scripts have been processed, or until the script calls the Flush or End
method.
Note: If this property is set, it should be before the <html>
tag in the .asp file
Syntax
| Parameter |
Description |
| flag |
A boolean value that specifies whether to buffer the page
output or not. False indicates no buffering. The server will send the output
as it is processed. False is
default for IIS version 4.0 (and earlier). Default for IIS version 5.0 (and
later) is true.
True indicates buffering. The server will not send output until all of the
scripts on the page have been processed, or until the Flush or End method has been
called. |
Examples
Example 1
In this example, there will be no output sent to the browser before the loop
is finished. If buffer was set to False, then it would write a line to the browser every time it went through the loop.
<%response.Buffer=true%>
<html>
<body>
<%
for i=1 to 100
response.write(i & "<br />")
next
%>
</body>
</html>
|
Example 2
<%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>
|
Example 3
<%response.Buffer=true%>
<html>
<body>
<p>This is some text I want to send to the user.</p>
<p>No, I changed my mind. I want to clear the text.</p>
<%response.Clear%>
</body>
</html>
|
Complete Response Object Reference
Make your web applications look like a million bucks
|
|
Most web applications today use boring methods to present data to their viewers using grids or simple HTML tables. FusionCharts induces "life" into the web applications by converting monotonous data into lively charts, gauges & maps.
FusionCharts works with all technologies like ASP, ASP.NET, PHP, ColdFusion, Ruby on Rails, JSP, HTML pages etc.
and connects to any database to render animated & interactive charts. It takes less than 15 minutes and no expertise
whatsoever to build your first chart and just a glance of it to captivate your audience. This fact is endorsed by our
12,000 customers and 150,000 users which include a majority of the Fortune 500 companies.
And yeah, your applications could look like a million bucks by spending just $69.
So go ahead, download your
copy of FusionCharts and start "wow-ing" your customers now!
|
 |
W3Schools' Online Certification Program
The perfect solution for professionals who need to balance work, family, and career building.
More than 4000 certificates already issued!
|
The HTML Certificate documents your knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
|