I have my ASP.NET MVC 2 application divided into few areas. One of them is a default area in the main catalog, and the other is an Account
area in the Areas catalog. Now, the problem is that I need to use the same view in controllers from both of these areas.
If they were in the same area, I would just return View("ViewName")
, but what can I do to return a view from my default area in a controller from my Account
area? Any ideas?