当我使用以下代码下载apdf文件时,会出现一个包含打开,保存和取消按钮的对话框。如果单击“打开”按钮,pdf文件将在同一窗口中打开。
{
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", string.Concat("inline;filename= " + filename + ""));
Response.TransmitFile("D:\\local\\Projects\\intranet\\Intranet\\Intranet\\Intranet\\PaySlip\\" + filename + ".pdf");
Response.End();
}
现在,我如何在新窗口中打开pdf文件?我可以通过更改代码在另一个窗口中打开文件吗?
请帮帮我..
答案 0 :(得分:0)
链接应该是这样的:
<asp:HyperLink id="hyperlink1" NavigateUrl="document.pdf" Target="_blank"
Text="Open document in a new window" runat="server"/>