Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public partial class Startup
  2. {
  3. public void ConfigureAuth(IAppBuilder app)
  4. {
  5. app.UseCookieAuthentication(new CookieAuthenticationOptions
  6. {
  7. AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
  8. LoginPath = new PathString("/Account/Login") //"/Account/Login" is your login path
  9. });
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement