2014-10-03 42 views

回答

0

這在Identity中是不存在的。

但是當你做身份的配置,你做這樣的東西在Auth.Config.cs

 app.UseCookieAuthentication(new CookieAuthenticationOptions 
     { 
      AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie, 
      LoginPath = new PathString("/Account/Login"), 

      // other stuff 
     } 

LoginPath屬性集?那就是現在與FormsAuthentication.DefaultUrl工作方式相同的重定向地址,只有您沒有在web.config中指定它。

+0

我該如何在代碼中調用重定向? – 2014-10-04 00:13:08

+0

只需將路徑分配給公共常量並在需要時重新使用 – trailmax 2014-10-04 07:21:55