私はこのようなjavacriptを持っています:
<script>
function GetFromDate() {
var dt1 = document.getElementById('fromDate').value;
var dt2 = document.getElementById('toDate').value;
var url = "Statistics/Excel/" + dt1 + "!" + dt2;
window.location.href = url;
return false;
};
</script>
コントローラーでは、私の ActionResult は次のようになります。
public ActionResult Excel(string id)
{
\\ View Creation
if(SomeLogic)
{
\\Excel Download Options
}
return View(viewModel);
}
Excel のダウンロード オプションでは完全に機能していますが、ビューは返されません。助言がありますか?詳細については、「viewModel」オブジェクトには、表示するのに最適なデータが含まれています。