Advertisement
Guest User

Untitled

a guest
Oct 27th, 2013
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. http://127.0.0.1:81/Account/Login
  2.  
  3. routes.MapRoute(
  4. "Account",
  5. url: "Account/{action}/{id}",
  6. defaults: new { controller = "Account" }
  7. );
  8.  
  9. routes.MapRoute(
  10. "Account",
  11. url: "{controller}/{action}/{id}",
  12. defaults: new { controller = "Account", action = "Login", id = UrlParameter.Optional }
  13. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement