Files
Samuele E. Locatelli 29bd2e78aa Aggiunto codice Legacy
2019-04-08 13:59:34 +02:00

20 lines
437 B
C#

using System.Web.Mvc;
using System.Web.Routing;
namespace MP_MON
{
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 }
);
}
}
}