授权绑定到帐户控制器的属性

时间:2013-12-02 19:35:25

标签: asp.net-mvc-4 asp.net-mvc-5

我已经跟踪了OWIN的一个问题,在一个新的mvc项目中使用模板一切正常;将owin支持添加到现有/空项目时,将调用帐户控制器,而不是我在Startup.Auth.cs的ConfigureAuth方法中定义的那个

 app.UseCookieAuthentication(new CookieAuthenticationOptions
        {
            AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
            LoginPath = new PathString("/users/Login") //THIS ALWAYS GOES TO THE ACCOUNT CONTROLLER
        });

位指示

 [Authorize]
    public ActionResult TestMethodThatRequiredAuth()
    {
        return View();
    }

0 个答案:

没有答案