我正在尝试在按钮单击时打开一个 .pdf 文件。我想将一个 .pdf 文件打开到一个面板或某个 iframe 中。使用以下代码,我只能在单独的窗口或保存模式中打开 .pdf 文件。
string filepath = Server.MapPath("News.pdf");
FileInfo file = new FileInfo(filepath);
if (file.Exists)
{
Response.ClearContent();
Response.AddHeader("Content-Disposition", "inline; filename=" + file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.ContentType = ReturnExtension(file.Extension.ToLower());
Response.TransmitFile(file.FullName);
Response.End();
}
如何将 iframe 指派给下面这行代码。
Response.AddHeader("Content-Disposition", "inline; filename=" + file.Name);