ボタンを私はPDFファイルを生成し、その後で、クライアント側でそれを開きます:開いているPDF
Response.ContentType = "application/pdf";
Response.TransmitFile(path);
これがブラウザでPDFファイルを表示しますが、同じタブになります。どうすれば新しいタブで開くことができますか?
ボタンを私はPDFファイルを生成し、その後で、クライアント側でそれを開きます:開いているPDF
Response.ContentType = "application/pdf";
Response.TransmitFile(path);
これがブラウザでPDFファイルを表示しますが、同じタブになります。どうすれば新しいタブで開くことができますか?
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script language=vbscript>
sub OpenInNewWindow()
window.open("PDFContainer.aspx")
end sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Way 3</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type=button OnClick="OpenInNewWindow()" value="Open in New Window"/>
<br /><br />
This time, we will open a new Internet Explorer Window and Show the PDF File directly in the IE
</div>
</form>
</body>
</html>
+1クライアント側のVBScriptを見るというまれな体験 –
これはサーバー側からは実行できません。これはクライアント側の操作です。 Create a new tab or window for a web page from ASP.NET
チェック[この](http://www.dotnetscraps.com/dotnetscraps/post/4-ways-to-send-a-PDF-file-to-the-IE-Client-inを参照してください-ASPNET-20.aspx)のブログ記事 – Vladimir