vote up 6 vote down star

Im curious to see if you can overload controller methods in ASP.Net MVC. Whenever I try, I get the error below. The two methods accept different arguements. Is this something that cannot be done?

The current request for action 'MyMethod' on controller type 'MyController' is ambiguous between the following action methods:

flag

3 Answers

vote up 9 vote down check

You can use the attribute if you want your code to do overloading.

[ActionName("MyOverloadedName")]

But, you'll have to use a different action name for the same http method (as others have said). So it's just semantics at that point. Would you rather have the name in your code or your attribute?

Phil has an article related to this: http://haacked.com/archive/2008/08/29/how-a-method-becomes-an-action.aspx

link|flag
vote up 1 vote down

As far as I know you can only have the same method when using different http methods.

i.e.

[AcceptVerbs("GET")]
public ActionResult MyAction()
{

}

[AcceptVerbs("POST")]
public ActionResult MyAction(FormResult fm)
{

}
link|flag
vote up 6 vote down

Yes. I've been able to do this by setting the AcceptVerbs attribute for each controller method to something distinct, i.e., HttpVerbs.Get or HttpVerbs.Post, but not both. That way it can tell based on the type of request which method to use.

[AcceptVerbs( HttpVerbs.Get )]
public ActionResult Show()
{
   ...
}

[AcceptVerbs( HttpVerbs.Post )]
public ActionResult Show( string userName )
{
   ...
}

One suggestion I have is that, for a case like this, would be to have a private implementation that both of your public Action methods rely on to avoid duplicating code.

link|flag

Your Answer

Get an OpenID
or

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