通过从Javascript调用Action Method来更新视图

时间:2013-08-22 09:28:07

标签: javascript asp.net-mvc

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

1 个答案:

答案 0 :(得分:0)

如果您的回复正在返回文件下载,那么这将被视为您的Http响应,您无法在同一操作中执行重定向。