summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdRelyingPartyMvc/Global.asax.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/OpenIdRelyingPartyMvc/Global.asax.cs')
-rw-r--r--samples/OpenIdRelyingPartyMvc/Global.asax.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/samples/OpenIdRelyingPartyMvc/Global.asax.cs b/samples/OpenIdRelyingPartyMvc/Global.asax.cs
new file mode 100644
index 0000000..a43b734
--- /dev/null
+++ b/samples/OpenIdRelyingPartyMvc/Global.asax.cs
@@ -0,0 +1,26 @@
+namespace OpenIdRelyingPartyMvc {
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Web;
+ using System.Web.Mvc;
+ using System.Web.Routing;
+
+ //// Note: For instructions on enabling IIS6 or IIS7 classic mode,
+ //// visit http://go.microsoft.com/?LinkId=9394801
+
+ public class MvcApplication : System.Web.HttpApplication {
+ public static void RegisterRoutes(RouteCollection routes) {
+ routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
+
+ routes.MapRoute(
+ "Default", // Route name
+ "{controller}/{action}/{id}", // URL with parameters
+ new { controller = "Home", action = "Index", id = string.Empty }); // Parameter defaults
+ }
+
+ protected void Application_Start(object sender, EventArgs e) {
+ RegisterRoutes(RouteTable.Routes);
+ }
+ }
+} \ No newline at end of file