How to use async/await to achieve asynchronous page in asp.net webform?

后端 未结 2 1234
栀梦
栀梦 2020-12-30 04:13

We can now use the async/await key words in ASP.NET MVC 4.

public async Task TestAsync()
{
    Web         


        
2条回答
  •  囚心锁ツ
    2020-12-30 05:05

    One easy way is to just make your event handlers async. First, add the Async="true" parameter to the @Page directive, and then you should be able to write async event handlers as such:

    protected async void Page_Load(object sender, EventArgs e)
    {
      var client = new WebClient();
      var content = await client.DownloadStringTaskAsync("http://www.google.com");
      Response.Write(content);
    }
    

    I say "should be able to" because I haven't actually tried this out myself. But it should work.

    Update: This does not work for Page_Load (see this MSDN forum thread), but should work for other events such as button clicks.

    Update: This does work for Page_Load in ASP.NET 4.5. Also, they added checks if you improperly use an async event handler. See this video for details.

提交回复
热议问题