forum

Home / DeveloperSection / Forums / overload views in MVC?

overload views in MVC?

Jayden Bell324512-Mar-2013

Hi Everyone!

I want to have links http://localhost:2409/Account/Confirmation/16 and that link http://localhost:2409/Account/Confirmation/ (without parametr).
But with this action methods, it isn't working. Why?

    public ActionResult Confirmation(int id, string hash)
    {
         Some code..

        return View();
    }
second, I just want to return View, if parametr is empty.

    public ActionResult Confirmation()
    {

        return View();
    }
Error (translated):

The current request for action on a controller Confirmation AccountController is ambiguous between the following methods of action:

System.Web.Mvc.ActionResult Confirmation (Int32, System.String) for type TC.Controllers.AccountController System.Web.Mvc.ActionResult Confirmation () for

type TC.Controllers.AccountController

Thanks in advance!


Updated on 12-Mar-2013

Can you answer this question?


Answer

1 Answers

Liked By