ASP.NET MVC:获取小写链接(而不是驼峰式大小写)

发布于 2024-08-04 04:23:22 字数 138 浏览 10 评论 0原文

我所有动态生成的操作链接等都在创建类似 /Account/Setup 的链接。看起来很奇怪。

我希望所有链接都是小写的(意思是/account/setup)。有办法做到这一点吗?

All my dynamically generated action links etc. are creating links like /Account/Setup. It looks strange.

I'd like all my links to be lowercase (meaning /account/setup). Any way to do this?

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

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

发布评论

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

评论(3

疏忽 2024-08-11 04:23:22

.NET Framework 4.5 中有一个更简单的解决方案,一个新属性 RouteCollection.LowercaseUrls,这里有一个示例

There is simpler solution in .NET Framework 4.5, a new property RouteCollection.LowercaseUrls, here's an example

年华零落成诗 2024-08-11 04:23:22

看看 http://goneale.com /2008/12/19/lowercase-route-urls-in-aspnet-mvc/。您可以在另一个 stackoverflow 中找到更多信息 我怎样才能ASP.NET MVC 中有小写路由吗?

到目前为止,其他帖子尚未解决导航到 Web 目录根目录的情况。 映射,您希望显示以下 URL:

mysite/home/ 甚至 mysite/home/index

如果您有一个指向 HomeController Index 操作的 Html 帮助程序函数的使用将改变以下事实:默认情况下,浏览器位置栏中将显示以下内容:

mysite/Homemysite/Home/Index

Take a look at http://goneale.com/2008/12/19/lowercase-route-urls-in-aspnet-mvc/. You can find more information in another stackoverflow at How can I have lowercase routes in ASP.NET MVC?.

The other posts thus far have not tackled the scenario where you navigate to the root of your web directory. If you have a mapping that directs to the HomeController Index action, you would like the following URL to appear:

mysite/home/ or even mysite/home/index

No amount of Html helper function usage will change the fact that, by default, the following will be shown in the browser location bar:

mysite/Home or mysite/Home/Index

小糖芽 2024-08-11 04:23:22

为Html编写扩展方法:

public static class MyHtmlExtensions
{
    public static string LowerActionLink(this HtmlHelper htmlHelper,someargs)
    {
        return String.ToLowerInvariant(htmlHelper.ActionLink(someArgs));
    }
}

然后使用Html.LowerActionLink而不是Html.ActionLink

Write an extension method for Html:

public static class MyHtmlExtensions
{
    public static string LowerActionLink(this HtmlHelper htmlHelper,someargs)
    {
        return String.ToLowerInvariant(htmlHelper.ActionLink(someArgs));
    }
}

Then use Html.LowerActionLink instead of Html.ActionLink

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