是否可以在asp.net 4.5中调用async Page_Load?
我想知道是否可以在asp.net 4.5中调用async Page_Load,就像ASP.Net MVC 4中的异步控制器一样。如果可以,我们如何在asp.net中使用异步事件?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 PageAsyncTask
使用起来非常简单。您基本上创建异步任务,然后将其注册到页面并执行它。上面的链接有一个很好的例子。
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.