我有两个.aspx页面。在第一页中我有一个按钮,在其点击事件中,用户被重定向到第二页。在第二页的page_load
事件中,我编写了代码来下载文件。
有效。但是当我在浏览器中完全加载第二页时,我需要下载这个文件(意思是,我能够看到第二页的所有内容)。
这是我的代码:
网页-1
protected void ibtnReset_Click(object sender, ImageClickEventArgs e)
{
Response.Redirect("Page-2.aspx");
}
页-2
protected void Page_Load(object sender, EventArgs e)
{
// code to download file
}
答案 0 :(得分:1)
页面的LoadComplete事件发生在将所有回发数据和视图状态数据加载到页面中之后,并且在为页面上的所有控件调用OnLoad方法之后。
示例用法(在您的C#代码中)
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
}
或者,您可以使用以下jQuery函数
$(document).ready(function()
{
//page is fully loaded and ready, do stuff here
}
只有在完全加载页面时才会调用它。包括所有js,图像和其他资源。
答案 1 :(得分:0)
实现这一目标的两种方法:
ASP.NET方式 - 在“卸载”页面生命周期中写入文件下载代码。页面完全呈现到浏览器后触发卸载。页面刚开始加载时会激活Page_Load。
jQuery方式 - 在$ document.ready(){}里写一个asp.net方法来下载文件。 $ document.ready()在文档加载或文档准备好后执行。确保你在页面下面写了jquery方法。