Somehow I had the impression that ASP.Net differentiates URLs based on the number of arguments too. But it doesn't seem to work in my project.
Consider the following function prototypes
public PartialViewResult GetMorePosts(string param1, string param2, string param3, int param4, int param5) AND public PartialViewResult GetMorePosts(string param1, string param2, string param3, int param4)
I thought if my URL had one extra argument it should resolve to the second function... Instead I am getting an ambiguous URL error.
Why?