The page is rendered at once during the Page.Render method for the page
object. Response.Flush will work, but there is nothing in the buffer on
Page_Load to flush.

bill



"Marc Würgler" <marc.wuergler@infoteam.ch> wrote in message
news:0a9801c35b34$c5455c30$a301280a@phx.gbl...
> Hi !
>
> With old asp, I used Response.Write("any text") and then
> Response.Flush() to send the content of the buffer to the
> client.
>
> I tried to use the same code in the codebehind (C#) file
> of an aspx page, but nothing happens. The whole content is
> sent to the client at the end of the execution of the
> page_load method. How can I make this work ?
>
> Thanks for replies