Update TD cell info during procedure run

  • Thread starter Thread starter news.microsoft.com
  • Start date Start date
N

news.microsoft.com

Hi,
I have an procedure run in my code behind. Is there a possibility to update
the innerHTML part of an cell during the process run in the procedure. Used
to give the user some info on the progress of the process.
Regards,
Rene
 
Rene,
There is not built-in way to do this because ASP.NET process the entire
request before returning any HTML to the client. The "buffer" option
defaults to true. Using a little more advanced methods, you can contrive
your own way to incrementally send updates to the user, but ASP.NET does not
have built-in functionality for this.

Best regards,
Jeffrey Palermo
 
Hello Jeffrey,

Can you point me a little in the way on solving this more advanced.

Regards,
Rene
 
Back
Top