Can anybody tell me how to call a method on a different controller from within an action method? I don\'t want to redirect. I want to call a method on a different controller
Looks like you're trying to do something the controllers aren't designed for.
Design your required method as an public method in some class and invoke from both controller actions.