2018-12-18 15:42:39 +01:00
|
|
|
|
using System.Web.Mvc;
|
2018-12-08 19:27:21 +01:00
|
|
|
|
using System.Web.Routing;
|
|
|
|
|
|
|
|
|
|
namespace MailSender
|
|
|
|
|
{
|
|
|
|
|
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 }
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|