how do i call an overloaded action in .net mvc?
- by Jeff Martin
I have an overloaded action in my Controller:
public ActionResult AssignList(int id)
{
...
}
[AcceptVerbs((HttpVerbs.Get))]
public ActionResult AssignList(int id, bool altList)
{
...
}
I'd like to use the same partial view for both lists but it will potentially have a differently filtered list of…