Tagged Questions

0
votes
2answers
49 views

In ASP.NET asynchronous pages, is it possible to execute 2 sequential, asynchronous tasks?

In ASP.NET, you can run asynchronous tasks as follows: PageAsyncTask task1 = new PageAsyncTask(BeginAsyncOperation1, EndAsyncOperation1, TimeoutAsyncOperation1, state); RegisterAsyncTask(task1); …
0
votes
3answers
111 views

Ajax update panel problem !!

I have one update panel inside which i have datalist. this update panel trigger for every 1 second to retrive the data from db. i have kept this update panel inside a vertical scroll enabled div …
0
votes
0answers
30 views

whether client request to asynchronous page (ASP.NET) return immediately or not?

Hello, I have a question about asynchronous page in asp.net 2.0. whether client request to asynchronous page (ASP.NET) return immediately or not? If it does, how will client do to get the data …
0
votes
1answer
106 views

Multiple sequential async web service calls from an asynchronous ASP.NET page?

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. …