如何更改默认名称“区域”到“区域”在MVC2中?
我使用的是 MVC 2,我需要将默认名称“Areas”更改为
。
无法将默认名称“Areas”更改为我自己的名字吗?
哪位大佬能帮忙解答一下吗,先谢谢了。
I'm using MVC 2, I need to change the default name "Areas" to <MyOwnAreaName>
.
Is't possible to change default name "Areas" to my own name??
Can any one help to give the solution, thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写一个自定义虚拟路径提供程序 。以下是您可能有兴趣覆盖的默认值:
因此,在您的情况下,这可能是这样的:
然后在
Application_Start
中注册此自定义引擎:现在您可以将区域文件放在
中~/MyOwnAreaName
。备注/建议:尽可能遵守 ASP.NET MVC 约定,仅在绝对必要时才覆盖它们。
You could write a custom virtual path provider. Here are the default values that you might be interested in overriding:
So here's how this might look in your case:
and then register this custom engine in
Application_Start
:Now you could place the area files in
~/MyOwnAreaName
.Remark/Advice: stick to the ASP.NET MVC conventions as much as possible and override them only if strictly necessary.