我有两个 .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
}