ASP.NET MVC区域命名空间问题
我在我的 asp.net mvc 3 解决方案中创建一个名为 admin 的新区域。 Visual Studio 自动分配名称空间:
MyApp.areas.admin.controllers
我将其更改为 MyApp.admin.controllers
但它停止解析操作。
在这方面的任何帮助将不胜感激。
谢谢
I create a new area in my asp.net mvc 3 solution named admin. Visual studio automatically assign the names space:
MyApp.areas.admin.controllers
I change this to MyApp.admin.controllers
But it stops resolving the action.
Any help in this regard will be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在为管理区域注册路由时指定新的命名空间。
在您的 \Areas\admin\adminAreaRegistration.cs 文件中,您需要修改 RegisterArea() 方法,如下所示:
You need to specify the new namespace when registering the route for your admin area.
In your \Areas\admin\adminAreaRegistration.cs file, you need to modify the RegisterArea() method as follows: