views:

233

answers:

1

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  A: 

in MVC 2 use GetVirtualPathForArea instead of GetVirtualPath

Cvn