What I want to do is to redirect from an action in "A" controller to an action in "B" controller it gives me this error that it can not find this action in the target controller
I am using RedirectToAction Method any help
You could try this:
return RedirectToAction("kiss", "meoghe");
// RedirectToAction("action name", "controller name");
// meogheController => "meoghe" is controller name
If you use ActionResult for return type on method, you must use return for RedirectToAction.
within your A controller add this in your action
RedirectToAction(new {controller="B", action="index", id=11,variable="abc"});
that's if you want to send some parameters also ,but do not forget to have a route configured which can map the "variable" parameter as well. I think this is solved in now
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With