Users Pricing

forum

Home Forums overload views in MVC? – MindStick

overload views in MVC?

Jayden Bell 3583 12 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!


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md