Ok so i have a snippet which is supposed to redirect to a controller's action.
return RedirectToAction("add");
Now the problem is that add action is overloaded. One which gets called when the HTTPrequest is of GET type and the other when the request is of POST type. Is there anyway that i can select to which action does the statement redirect ?