我使用Aspose.Cells下载文件,我正在使用以下代码
workbook.Save(this.Response, wbookName, ContentDisposition.Attachment, new OoxmlSaveOptions());
this.Response.End();
现在我想在我的网页上显示已完成下载的消息,但我无法做到这一点。 如何在我的网页上显示已下载文件的消息?
答案 0 :(得分:0)
拨打Response.End()
后,其他任何内容都无法发送给客户端。您必须在致电Response.End()
之前发送任何内容,例如,使用Response.Write()
。