#asp.net #asp.net-mvc
#asp.net #asp.net-mvc
Вопрос:
Это код в моем глобальном.asax IgnoreRoute и MapRoute не работают, я попытался ввести все необходимые пространства имен, но это не работает
using System.Web.Mvc; using System.Web.Routing; using System.Collections.Generic; using System.Linq; namespace LiveAccounts { public class Global : System.Web.HttpApplication { public static void RegisterRoutes(RouteCollection routes) { //It shows routes does not have a definition for Ignore Routes routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); //It shows routes does not have a definition for Map Routes routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "device", action="view", id = UrlParameter.Optional }); } } }