我有一个像这样的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”对象包含要显示的完美数据。