Skip to content

Instantly share code, notes, and snippets.

@mikekelly
Created July 18, 2011 21:04
Show Gist options
  • Select an option

  • Save mikekelly/1090649 to your computer and use it in GitHub Desktop.

Select an option

Save mikekelly/1090649 to your computer and use it in GitHub Desktop.
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 = "" } // Parameter defaults
);
}
protected void Application_Start()
{
RegisterRoutes(RouteTable.Routes);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment