URL Routing C# mvc and Web Forms(URL 路由 C# mvc 和 Web 窗体)
问题描述
所以我有一个 webforms 和一个 mvc 应用程序,我正在尝试正确路由.我的默认路由按预期工作,但是当我单击其中一个视图中的操作链接时,它没有路由到正确的页面.
So I have a webforms and an mvc application combined and am trying to get things routed correctly. I have the default routing working as expected, but when I click on an actionlink in one of my views, it is not routing to the correct page.
这是我的路由代码.
void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapPageRoute("",
"", "~/Default.aspx", true);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Chips", action = "Index", id = UrlParameter.Optional }
);
}
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
}
这是我会点击的操作链接:@Html.ActionLink("Properties Editor", "Index", "Property")
Here's an Action Link that I would click on:@Html.ActionLink("Properties Editor", "Index", "Property")
这是我的预期结果:urlgoeshere.com/Property/Index
这是我的实际结果:urlgoeshere.com/?action=Index&controller=Property
我不知道要改变什么来补救这种情况?有什么想法吗?
I'm not sure what to change to remedy this situation? Any ideas?
推荐答案
我最终不得不添加路由约束.这就是我最终做的事情.
I ended up having to add a routing constraint. Here's what I ended up doing.
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapPageRoute("",
"", "~/Default.aspx", true, null, new RouteValueDictionary { { "outgoing", new PageConstraint() } });
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Chips", action = "Index", id = UrlParameter.Optional }
);
还有页面约束.
public class PageConstraint : IRouteConstraint
{
public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
{
if (routeDirection == RouteDirection.IncomingRequest)
return true;
return false;
}
}
这篇关于URL 路由 C# mvc 和 Web 窗体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:URL 路由 C# mvc 和 Web 窗体


基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01