Re: Response object
- From: "Cactus Corp." <nXewsXalaXksaX@xxxxxxxxxxx>
- Date: Tue, 9 Aug 2005 12:27:16 +0200
Hi there
The renderer usually waits for end of response before sending
it to the client. This relates to the 'response buffer' feature.
You need to disable the response buffer at the beginning of
the page :
Response.Buffer = false;
This will make the server start sending output information to the
client before the end of the page is rendered.
For example try this:
-------------buffer.aspx -------------
Response.BufferOutput = false;
for(int i=0;i<10;i++)
{
Thread.Sleep(500);
Response.Write(i+"<br/>");
Response.Flush();
}
-------------------------------------
This will work on Firefox. There must be some client side
setting in IE which prevents displaying the page before its
content is completely returned...
Antonio
.
- References:
- Response object
- From: masoud bayan
- Re: Response object
- From: Stefan
- Re: Response object
- From: masoud bayan
- Response object
- Prev by Date: Check existance of a querystring variable
- Next by Date: Runtime Error
- Previous by thread: Re: Response object
- Next by thread: RadioButtonList in Datagrid event does not fire
- Index(es):