下载文件后更改 ASP.net 中的 PostBackUrl

发布于 2024-09-16 16:12:06 字数 644 浏览 2 评论 0原文

我有一个 ASP.net,它允许用户选择多个输入和下拉列表来过滤报告,并在按下同一表单上的按钮后下载 Excel 报告。

通过更改输入并按下载,该页面可以多次使用 每次按钮。

该按钮应该发回到隐藏的 IFRAME 到一个单独的网页,但我是 无法根据需要动态更改表单的目标。

<form runat="server" method="post"> 
<asp:Button runat="server" id="DownloadToExcel" TabIndex="-1" Text="Download To Excel" UseSubmitBehavior="False" PostBackUrl="report.aspx" />
</form> 
<iframe style="hide" id="output" src=""></iframe>

此外,当我按下“DownloadToExcel”按钮下载文件时,文件会按预期下载。但是,任何其他回发(包括更新屏幕)都会回发到 report.aspx 而不是 filter.aspx。

如何更正回发,使其仅回发一次以下载文件,然后将其更改回原始页面,以便屏幕可以继续用于过滤和下载第二个报告。

这也可能消除对 IFRAME 的需要。

I have a ASP.net which allows users to select a number of inputs and dropdown lists to filter the report and to download an Excel report after pressing a button on that same form.

The page can be used mulitple times, by changing the inputs and pressing the download
button each time.

The button should be posting back to the hidden IFRAME to a separate webpage, but I am
unable to change the target for the form on the fly as needed.

<form runat="server" method="post"> 
<asp:Button runat="server" id="DownloadToExcel" TabIndex="-1" Text="Download To Excel" UseSubmitBehavior="False" PostBackUrl="report.aspx" />
</form> 
<iframe style="hide" id="output" src=""></iframe>

Additonally, when I download the file when pressing the "DownloadToExcel" button, the file downlodads as expected. However, any additional postbacks including updating the screen are posting back to report.aspx and not filter.aspx.

How do I correct the postback so it only postbacks once to download the file, and then change it back to the original page so the screen can continue to be used to filter and download a second report.

This may also eliminate the need of the IFRAME as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟火散人牵绊 2024-09-23 16:12:06

我直接向所有提交按钮添加 PostBackURLs 解决了这个问题。

一个用于前往report.aspx 的Excel 下载,另一个用于filter.aspx 页面上的回发。

看起来,如果回发更改(在本例中更改为 report.aspx),它会在每次您希望回发时重用任何后续回发的路径名,除非明确定义。

I solve the problem my adding PostBackURLs to all the submit buttons directly.

One for the Excel download that goes to report.aspx and the other for the postback on the page for filter.aspx.

It appears that if the postback is changed, in this case to report.aspx, it reuses the pathname for any subsequent postbacks, unless defined explicity, for each time you wish to postback.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文