DocumentServer/OnlineEditorsExample/OnlineEditorsExampleMVC/App_Start/RouteConfig.cs

19 lines
483 B
C#
Raw Normal View History

2015-04-29 16:10:50 +00:00
using System.Web.Mvc;
using System.Web.Routing;
namespace OnlineEditorsExampleMVC
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{action}",
defaults: new { controller = "Home", action = "Index" }
);
}
}
}