本文介绍了是否可以在asp.net 4.5中调用异步Page_Load?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否可以像ASP.Net MVC 4中的异步控制器一样在asp.net 4.5中调用异步Page_Load.
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?
推荐答案
您可以使用 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.
这篇关于是否可以在asp.net 4.5中调用异步Page_Load?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!