C#コードから新しいタブでURLを開く方法を知っている人はいますか?私はで試しました
Response.Write("<script type='text/javascript'>window.location.href('../Documents/doc.pdf','_blank'); </script>");
Response.Write("<script type='text/javascript'>window.open('../Documents/doc.pdf','_blank'); </script>");
Response.Write("$('#pageContent_Send').click();");
と
$("#pageContent_Send").click(function () {
window.open("../Documents/doc.pdf");
return false;
});
「window.open」を使用すると機能しませんでした。「ポップアップブロッカー」ブラウザの警告が表示されます。