Async Task in ASP.NET (C#)
I want to 开发者_如何学运维implement a logic which gets the data from the database Async.
Can anyone guide me how can I implement ASync Task in ASP.NET, C#. I want to start that task in Global.asax (Application_Start) so I can fetch my data from the cache which is stored Async.
Thanks.
check out the following links
Executing Asynchronous Tasks in ASP.NET
Performing Asynchronous Work, or Tasks, in ASP.NET Applications
精彩评论