如何将 ActionLink 与 RouteValueDictionary 结合使用?

发布于 2024-10-15 02:34:11 字数 453 浏览 2 评论 0原文

我试图让我的 URL 看起来像这样:

http://domain.com/controller/action/123/SomeTextForSEO

我尝试使用操作链接,但在斜杠后面附加了 ?company=SomeTextForSEO 而不是公司名称。

 <%: Html.ActionLink("DomainList", "Index", "DomainList", new { id = item.CompanyID, company = item.CompanyDisplayName.Trim() }, new object { })%> 

现在我认为我需要使用 RouteValueDictionary,但我不确定如何在 ASP.NET 语法中执行此操作。有人能指出我正确的方向吗? MSDN 的例子还不够。

I'm trying to make my URL look like this:

http://domain.com/controller/action/123/SomeTextForSEO

I tried using an Action Link, but that appends ?company=SomeTextForSEO instead of the company name after a slash.

 <%: Html.ActionLink("DomainList", "Index", "DomainList", new { id = item.CompanyID, company = item.CompanyDisplayName.Trim() }, new object { })%> 

and now I think I need to use a RouteValueDictionary but I'm unsure of how to do this in ASP.NET syntax. Can someone point me in the right direction? The MSDN examples are insufficient.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装纯掩盖桑 2024-10-22 02:34:11

如果您转到 global.asax.cs 并添加一条与现有默认路由类似的新路由,其模式为

"{controller}/{action}/{id}/{company}"

Before the default one,您应该会发现该链接将按原样通过 ActionLink 调用正确生成。

我正在使用手机,所以我想更详细一些(路由限制是一个好主意,可以防止此路由干扰默认值),但 HTC 键盘对代码不友好;)

If you go to global.asax.cs and add a new route similar to the existing default route with the pattern

"{controller}/{action}/{id}/{company}"

Before the default one, you should find that the link will generate correctly with your ActionLink call as-is.

I'm on a phone so I'd like to be more verbose (a route restriction would be a good idea to prevent this route interfering with the default), but the HTC keyboard is not code friendly ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文