路由和GetVirtualPath问题
我正在使用 MVC 2 Preview2,在一个项目中包含两个区域。当我从区域内部使用 RouteTable.Routes.GetVirtualPath(this.viewContext.RequestContext, null) 时,我得到了第一个区域的虚拟路径。除此之外,其他地区的运作都非常良好。
我能做错什么吗?
I'm using MVC 2 Preview2, with two areas in a single project. When I use RouteTable.Routes.GetVirtualPath(this.viewContext.RequestContext, null) from inside an area, I got the virtual path to the first area instead. Except for this, areas are working pretty well.
What can I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 MVC 2 中使用 GetVirtualPathForArea 而不是 GetVirtualPath
in MVC 2 use GetVirtualPathForArea instead of GetVirtualPath