diff options
Diffstat (limited to 'samples/OpenIdRelyingPartyMvc/Global.asax.cs')
-rw-r--r-- | samples/OpenIdRelyingPartyMvc/Global.asax.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/OpenIdRelyingPartyMvc/Global.asax.cs b/samples/OpenIdRelyingPartyMvc/Global.asax.cs index a43b734..d57a13f 100644 --- a/samples/OpenIdRelyingPartyMvc/Global.asax.cs +++ b/samples/OpenIdRelyingPartyMvc/Global.asax.cs @@ -17,6 +17,11 @@ "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = string.Empty }); // Parameter defaults + + routes.MapRoute( + "Root", + string.Empty, + new { controller = "Home", action = "Index", id = string.Empty }); } protected void Application_Start(object sender, EventArgs e) { |