Redirect to action in other controller
I want to redirect from an action in one controller to an action in a second controller. Normally I would use RedirectToAction("actionName", "controllerName", objects); The method I want to redirect to has two overloads: One for HttpVerbs.Get that is used for direct linking One for HttpVerbs.Post accepting reference types that get fill...