I could really do with some help on this one - I am completely stuck :-( I have implemented the Async pattern (correctly, hopefully) in a search component that I have developed. This is being called
In ASP.NET, you can run asynchronous tasks as follows: PageAsyncTask task1 = new PageAsyncTask(BeginAsyncOperation1, EndAsyncOperation1, TimeoutAsyncOperation1, state);
I have one update panel inside which I have datalist. This update panel triggers every 1 second to retrieve the data from db.
I need to make n number of async web service calls from an async ASPX page. Each WS call retrieves a portion of a binary file. The code then outputs the file block to the page\'s response stream.