首页 > 解决方案 > 使用.net MVC中的路由将Url的第一个字母大写(Url Routing to UpperCase)

问题描述

我想从我的网址中将首字母大写

this is what I have:
http://www.example.com/test/testing-url

this is what I want:
http://www.example.com/Test/Testing-Url

是否可以在 .net MVC 路由中执行此操作,如果可以,我该如何实现?

我为此尝试的是我在 Application_BeginRequest 中使用了 Regex 表达式,global.asax但它不起作用。

标签: c#asp.net-mvcroutes

解决方案


推荐阅读