vote up 0 vote down star

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?

flag

Is this a GET or a POST? (Where are the params coming from?) – Sosh Nov 4 at 12:07
It was a GET request. I found the issue was related to parameter names. – Cyril Gupta Nov 5 at 6:43

2 Answers

vote up 1 vote down

You need to make sure that the route table has the url wit the least arguments first, otherwise the one with more arguments will hide the rest.

link|flag
That's right. However my routes were set up correctly, the problem was in one of the parameter names. I could locate and fix the issue later. Thanks for the answer. – Cyril Gupta Nov 5 at 6:42
Glad you managed to fix it :) – Mark Dickinson Nov 5 at 9:29
vote up 0 vote down

ASP.NET MVC doesn't support action method overloading based on method signature. For a discussion of this and workarounds, see this post.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.