Code to check when page has finished loading

前端 未结 3 1842
闹比i
闹比i 2021-01-12 17:00

How can I check whether the page has finished loading? When it has, how can I execute a method already created in the C# code behind for that page?

I would like to o

相关标签:
3条回答
  • 2021-01-12 17:26

    Use JQuery and make a callback to open the xls file.

    There is a few solutions detailed here POST to server, receive PDF, deliver to user w/ jQuery

    Basically you can hook into the

    $(document).ready(function() {
      // do window.location or another one of the options to download the file.
    });
    
    0 讨论(0)
  • 2021-01-12 17:35

    Does this link answer your question?

    Example usage (in your C# code)

    protected void Page_Load(object sender, EventArgs e)
    {
          Page.LoadComplete +=new EventHandler(Page_LoadComplete);
    }
    
    void  Page_LoadComplete(object sender, EventArgs e)
    {
        // call your download function
    }
    
    0 讨论(0)
  • 2021-01-12 17:37

    You can do it in DOM javascript:

    window.onload = function() {
       download()
     }
    
    0 讨论(0)
提交回复
热议问题