Sha256: b1f2b163d7823b5cb4aa42cde3f3ea2b208d120df2cb598d80243938bcddfe1a
Contents?: true
Size: 600 Bytes
Versions: 88
Compression:
Stored size: 600 Bytes
Contents
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Routing; namespace CSharpWeb { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); } } }
Version data entries
88 entries across 88 versions & 1 rubygems