In a controller, is it possible to return the view of an action from ANOTHER controller? The other option is to return a partial view, which uses Html.Action(…) to return the view from the other controller, but I was wondering if there’s anything cleaner. Thanks.
Share
I ended up using my original solution, which was having a shared view that invokes an action. It was much less code than I needed. Thanks.