Files
simple-shop/Simple-Shop/App_Start/RouteConfig.cs
T
Nate VanBuskirk 2ac49cb810 Created Solutions for:
Mobile
Mobile.Android
Web (MVC.NET)
Web.Tests
WinForms
2019-11-10 18:05:36 -06:00

24 lines
527 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace Simple_Shop
{
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 }
);
}
}
}