Inside my asp.net mvc4 controller I have two action methods
public ActionResult Projects()
and
public ActionResult Projects(string s)
on debugging when I'm send string to this second method I'm getting error that current request is ambiguous between this two methods.
Why is that, since those have different method signature?