Создал несколько проектов, один админка, другой просто приложение.
Когда запускаю решение то обрабатываеться только роут админки
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace IQS
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Admin",
url: "Admin/{controller}/{action}/{id}",
defaults: new { controller = "Service", action = "Index", id = UrlParameter.Optional }
);
}
}
}
а другое приложение вообще не могу достать никак, 404.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace Widget
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "Widget/{controller}/{action}/{id}",
defaults: new { controller = "Service", action = "Index", id = UrlParameter.Optional }
);
}
}
}
Структура проекта:
Я не имею опыта в mvc поэтому не могу понять как решить проблем, может area может namespace..