问题
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?
回答1:
in MVC 2 use GetVirtualPathForArea instead of GetVirtualPath
来源:https://stackoverflow.com/questions/1627423/routing-and-getvirtualpath-problem