3

I wish to know whether it possible to call async Page_Load in asp.net 4.5 like async controllers in ASP.Net MVC 4. If it is possible, how do we use async events in asp.net?

Prasanth
  • 3,029
  • 31
  • 44

1 Answers1

4

You could use the PageAsyncTask

Pretty simple to use. You basically create your async task and then register it with the page and execute it. The link above has a good example.

James Hull
  • 3,669
  • 2
  • 27
  • 36