Can Page_Load() Be Async
问题 Can a Page_Load() method be async ? I ask as if I have declared as such protected void Page_Load() Everything loads as it should. If I have it declared as such protected async void Page_Load() the Page_Load() breakpoint is not hit, nor does the catch() block get hit. Now I am trying to set my Page_Load() method as async in order to have 3 different stored procedures execute to completion before the page is fully rendered. If I do not have my Page_Load() method as async I get this compile