How can I specify a namespace when calling @Html.Action(…) in ASP.NET MVC
问题 When I try to use Html.Action in ASP.NET MVC 3 for a controller in a different namespace from the current controller I get an error : Code: @Html.Action("Foo", "Application", new { id = "FG2" }) Error : The controller for path '/rrmvc/store/checkout' was not found or does not implement IController. This error only occurs when the controller ApplicationController is in a different NAMESPACE from the current controller such as StoreControllers.CheckoutController (in fact they're in completely