gpt4 book ai didi

javascript - Firefox Iframe 问题

转载 作者:行者123 更新时间:2023-11-30 18:43:43 24 4
gpt4 key购买 nike

FireFox 显示用于打开或保存对话框的弹出窗口。

<iframe id="appFrame" runat="server" style="height: 95%; width: 100%; border: 0px;
z-index: -123;"></iframe>

我正在使用iframe显示word文档,

document.getElementById("ctl00_GridContentPlaceHolder_appFrame").src = "ResponseWriter.aspx?docid=" + docId + "&doctype=" + docType + "&type=" + type;

我正在调用 ResponseWriter.aspx 写入字节,它在 IE 中运行良好但在 Firefox 中运行良好,这是 ResponseWriter.aspx 的代码

        Response.ClearHeaders();
Response.ClearContent();
Response.AddHeader("MIME Type", type.Trim());
Response.AppendHeader("content-disposition",
"inline;attachment; filename=" + "Unknown." + docType);

Response.AddHeader("Content-Length", _fileArray.Length.ToString());
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.ContentType = type.Trim();
Response.BinaryWrite(_fileArray.ToArray());
Response.End();

谁能帮帮我。

最佳答案

这可能是因为 Office 在 IE 中安装了一些钩子(Hook)以支持“在浏览器中”查看 Office 文档,而 Firefox、Chrome 等只是将字节发送到 Office 应用程序。

没有看到“ResponseWriter.aspx”将字节发送到流的方式的更多细节以及您在 Firefox 中看到的行为,目前我无法猜测更多。

请注意,您可能应该考虑使用 request handler (.ashx)而不是 .aspx 页面 - 对于这些类型的请求,它有一个更清晰的模型,因为它不使用大部分页面生命周期。

关于javascript - Firefox Iframe 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6097181/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com