Off hand I'd lean towards option #1, as it tends to tie up fewer
resources on the server. ASP.NET will only process a certain number of
concurrent requests, and even though that number is configurable it is
hard to tie up threads and connections while waiting around for
"stuff" to finish up or possibly time out.
The disclaimer is, I don't know how many users you need to support, or
how long the 3 asynch processes need to complete, so #1 may not be THE
optimal solution for your web application, but it is a conservative
approach.
--
Scott
http://www.OdeToCode.com
On Sat, 10 Jul 2004 19:48:54 -0400, "Thomas Nielsen" <>
wrote:
>Hi,
>
>I need to make a web page that wait for 3 asynchronous processes to finish.
>
>So I am considering these options
>
>1) Poll the status of the processes from the web page using the "REFRESH"
>metatag in HTML.
>2) Synchronously call a monitor function on the server that poll the status
>of the processes, and returns when they are done.
>
>Are there other options? Which of the two can you recommend?
>
>- Thomas
>