BufferOutput property of the HttpResponse class?

  • Thread starter Thread starter somoza.albert
  • Start date Start date
S

somoza.albert

Hello,

I've been told that I can make my Web Pages render quicker if I set
the BufferOutput property of the HttpResponse Class to false. I have
a "test" Web App that works, but it doesn't seem to have the
HttpResponse Class. Where do I adjust this?

Thanks
Sam
Q3
 
You should take ALL of your ASP.NET questions over to an ASP.NET group. Your
questions have nothing to do with the C# language in particular.

Try: microsoft.public.dotnet.framework.aspnet
 
Sam,

You can set this in the Page directive, like so:

<%@ Page Buffer="true" %>

Or, if you want to set it in code in your ASPX page, you can use the
Response property exposed by the Page class (which your page derives from)
to get the HttpResponse instance to set the BufferOutput property value on.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top