Tagged Questions
The asynchronous-pages tag has no wiki summary.
1
vote
1answer
299 views
Brain Teaser: IAsyncResult AsyncState is null after callback in Async ASP .Net Page
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 ...
0
votes
3answers
232 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
2answers
1k 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
1answer
604 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.
...