我想用AntiForgeryToken重定向页面(使用window.loaction.href)MVC4

时间:2015-11-05 05:05:29

标签: jquery asp.net-mvc antiforgerytoken

我想使用 window.location.href与AntiForgeryToken 重定向我的网页。

我的行动是

    [Authorize]
    [ValidateAntiForgeryToken]
    public class AdminController : Controller
    {
      public action Test()
      {
        return view();
      }
    }

JavaScript功能

    function CAllTest() {
       //Some condition check
       window.location.href = "Admin/Test";
    }

它是一个管理员门户网站。在身份验证后,我只能访问我的操作方法。我想从JavaScript函数重定向。

任何人都可以帮忙解决这个问题

0 个答案:

没有答案