我的页面有一个弹出窗口。弹出窗口上的按钮生成并下载Aspose excel文件。 (该页面也有Ajax设置)
现在文件下载后,我的按钮被禁用,除非我手动刷新,否则页面上没有任何其他工作。
页面上的弹出
<div class="modal hide" id="AwaitPracSignoffReportModal">
<div class="modal-header">
<a class="close" data-dismiss="modal">×</a>
<h3>
<asp:Label runat="server" ID="lblPopupHeading" Text="Awaiting Practice Sign-off Report" /></h3>
</div>
<!-- Other asp controls in popup-->
<div class="modal-footer" style="margin-bottom: 5px">
<button class="btn" data-dismiss="modal">
Cancel</button>
<asp:Button runat="server" ID="btnGenerateReport" CssClass="btn btn-primary"
Text="Generate Report" ValidationGroup="ReportModal" OnClientClick="javascript:setFormSubmitToFalse();" />
</div>
</div>
脚本
function HideGenerateReportPopup() {
$('#AwaitPracSignoffReportModal').modal().hide();
}
function setFormSubmitToFalse() {
setTimeout(function () { _spFormOnSubmitCalled = false; }, 3000);
return true;
}
代码隐藏
btnGenerateReport.Click += (s, ev) =>
{
this.Presenter.ExportToExcel();
ScriptManager.RegisterStartupScript(this, this.GetType(), "Generate Report", "HideGenerateReportPopup();", true);
};
演示者代码(不同的项目)
Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook();
int worksheetNo = 0;
foreach (System.Data.DataTable dt in ds.Tables)
{
Aspose.Cells.Worksheet worksheet = workbook.Worksheets[worksheetNo];
worksheet.Cells.ImportDataTable(dt, true, "A1");
worksheet.AutoFitColumns();
worksheetNo++;
}
workbook.Save(HttpContext.Current.Response, filename, ContentDisposition.Attachment, new XlsSaveOptions(SaveFormat.Excel97To2003));
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.End();
我已按建议here添加了setFormSubmitToFalse函数。 如果我尝试为btnGenerateReport添加AjaxSettings,则会出现脚本错误
未捕获错误:Sys.WebForms.PageRequestManagerParserErrorException:无法解析从服务器收到的消息。此错误的常见原因是通过调用Response.Write(),响应过滤器,HttpModules或服务器跟踪来修改响应时。
当我删除它时,页面保持原样,不再有任何控制工作。
答案 0 :(得分:0)
找到我的答案here
页面和PDF。你不能这样做。通常下载页面会在您访问它们时(通过JavaScript,我相信)以单独的请求开始下载,并提供直接链接以防JavaScript无效。
现在我添加了一个separte页面(ashx)并在另一个标签页中打开它。