我有一个允许从服务器下载文件的 Web 应用程序。文档可能是 Office 文件(.docx、pptx、.xslx)或 Pdf。
逻辑非常简单:从客户端单击时调用 Web 服务并调用传递所需参数的 aspx 页面 (Print.aspx)。打印页面调用 Web 服务来检索选定的文档二进制文件并将它们写入响应中:
protected void Page_Load(object sender, EventArgs e)
{
string fileName = Request.QueryString["fname"];
if (string.IsNullOrEmpty(documentID) == false)
{
byte[] document = GetPhysicalFile(documentID); //Get the binaries
showDownloadedDoc(document, fileName);
}
}
private void showDownloadedDoc(byte[] document, string fileName)
{
Response.Clear();
Response.ContentType = contentType;
Response.AppendHeader("content-disposition", string.Format("attachment; filename=\"{0}\"", fileName));
Response.BufferOutput = false;
Response.BinaryWrite(document);
Response.Close();
}
Pdf 文档在 Print.aspx 页面中打开,并且 aspx 页面仅加载一次。对于 Office 文件,Page_Load() 方法被调用 3 次。
在第一次打开/保存文档的对话框后,如果单击“打开”ic,则 Page_Load 被调用两次,然后文档最终在 MS Word 中打开。
有没有办法可以防止加载多个页面来打开这些文档?我想避免必须将文件保存在服务器端并重定向到该 URL,因为将为每个访问创建一个文件。