Code to check when page has finished loading

被刻印的时光 ゝ 提交于 2019-12-01 05:48:57

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
}
Dave Walker

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.
});
jackson5

You can do it in DOM javascript:

window.onload = function() {
   download()
 }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!