|
 |
asp_databases thread: RE: Response.buffer
Message #1 by "Jeroen Diderik" <jeroen@i...> on Tue, 14 May 2002 17:50:28 +0200
|
|
Put a Response.Flush after your Response.Write (Ofcourse Response.Buffer
is set to true in the top of your file) This forces to put any data that
is buffered to be send to the client. After that you cannot do a
response.redirect or other functions that cannot have client data
written before it executes.
Gr,
Jeroen Diderik
-----Original Message-----
From: Arundhati Bopardikar [mailto:Bopardikar@Q...]
Sent: Monday, May 13, 2002 10:51 PM
To: ASP Databases
Subject: [asp_databases] Response.buffer
Hi,
I have a Activex Server Component which does some background stuff that
takes long time to finish. It is called from an asp page.
I want to write some messages to the user from this component on what is
going on. I write them to the Response object and have already called
m_piResponse->put_Buffer(false);
However, these messages appear on the web page only after the component
is done. How can I make the messages appear while the COM is working?
I would appreciate any help.
Regards,
Arundhati
Message #2 by Arundhati Bopardikar <Bopardikar@Q...> on Mon, 13 May 2002 13:51:06 -0700
|
|
Hi,
I have a Activex Server Component which does some background stuff that
takes long time to finish.
It is called from an asp page.
I want to write some messages to the user from this component on what is
going on.
I write them to the Response object and have already called
m_piResponse->put_Buffer(false);
However, these messages appear on the web page only after the component is
done.
How can I make the messages appear while the COM is working?
I would appreciate any help.
Regards,
Arundhati
|
|
 |