I have multiple route controls for multiple actions in my web application.
我有多个路由控件用于我的Web应用程序中的多个操作。
This actions is called by parameter-
此操作由参数调用 -
routes.MapRoute(
name: "SpecificRoute",
url: "{BusinessName}",
defaults: new { controller = "Business", action = "OpenPage" }
);
This one is called via action
name and parameter-
这个通过动作名称和参数调用 -
routes.MapRoute(
name: "ResumeRoute",
url: "{action}/{PublicResume}",
defaults: new { controller = "Business", action = "PublicResume" }
);
And for all default actions I already have one route control by default-
对于所有默认操作,我默认有一个路由控制 -
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{*id}",
defaults: new { controller = "WelcomeLedger", action = "Welcome", id = UrlParameter.Optional }
);
I have deployed this application on local IIS server.
我已在本地IIS服务器上部署此应用程序。
Now there is something went wrong with route.config
file, Maybe I am not using routes in proper manner.
现在route.config文件出了问题,也许我没有以正确的方式使用路由。
So this application shows me resource not found error
on every action and sometimes it works after cleaning the solution.
因此,此应用程序向我显示每个操作上的资源未找到错误,有时它在清理解决方案后有效。
How can I use actions without breaking their manner of usage?
如何在不破坏其使用方式的情况下使用操作?
This is my route.config file-
这是我的route.config文件 -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;
namespace MvcApplication8 {
public class RouteConfig {
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
routes.MapRoute(
name: "SpecificRoute",
url: "{BusinessName}",
defaults: new { controller = "Business", action = "OpenPage" }
);
routes.MapRoute(
name: "ResumeRoute",
url: "{action}/{PublicResume}",
defaults: new { controller = "Business", action = "PublicResume" }
);
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{*id}",
defaults: new { controller = "WelcomeLedger", action = "Welcome", id = UrlParameter.Optional }
);
}
}
}
EDIT-
编辑-
Default routes not found (resource not found
) after adding two custom routes above it.
在其上方添加两个自定义路由后找不到默认路由(找不到资源)。
1 个解决方案
#1
1
I think you have a typo in your default route:
我认为你的默认路线有拼写错误:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{*id}",
defaults: new { controller = "WelcomeLedger", action = "Welcome", id = UrlParameter.Optional }
);
There is a * before id, it should be {id}
instead of {*id}
在ID之前有*,它应该是{id}而不是{* id}
#1
1
I think you have a typo in your default route:
我认为你的默认路线有拼写错误:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{*id}",
defaults: new { controller = "WelcomeLedger", action = "Welcome", id = UrlParameter.Optional }
);
There is a * before id, it should be {id}
instead of {*id}
在ID之前有*,它应该是{id}而不是{* id}