新しいタブで PDF ファイルを投稿、処理、および返す target="_blank" のフォームがあります。問題は次のとおりです。
初めて行うときは問題ありませんが、もう一度行うと、新しいタブを開く代わりに、古いタブが新しいコンテンツに置き換えられます!
Internet Explorer を使用している場合、パラメータが null に設定されます。この場合、新しいタブを閉じて、もう一度やり直す必要があります。
コントローラ:
public ActionResult SubmitReport(string parameter)
{
// all the code
return File(stream, "application/pdf");
}
意見:
@using (Html.BeginForm("SubmitReport", "ResumoPagamentos", FormMethod.Post, new { area = "CI3S", @target = "_Blank" }))
{
// etc.. etc...
}