Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two buttons on my MVC form:

<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />

From my Controller action how do I know which one have been pressed?

share|improve this question

7 Answers

up vote 17 down vote accepted

Name both your submit buttons the same

<input name="submit" type="submit" id="submit" value="Save" />
<input name="submit" type="submit" id="process" value="Process" />

Then in your controller get the value of submit. Only the button clicked will pass it's value.

public ActionResult Index(string submit)
{
    Response.Write(submit);
    return View();
}

You can of course assess that value to perform different operations with a switch block.

public ActionResult Index(string submit)
{
    switch (submit)
    {
        case "Save":
            // Do something
            break;
        case "Process":
            // Do something
            break;
        default:
            throw new Exception();
            break;
    }

    return View();
}
share|improve this answer
3  
Beware the issues that localisation could bring to this solution, to which Darin's solution is not susceptable. – Richard Szalay Nov 27 '09 at 8:23
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />

And in your controller action:

public ActionResult SomeAction(string submit)
{
    if (!string.IsNullOrEmpty(submit))
    {
        // Save was pressed
    }
    else
    {
        // Process was pressed
    }
}
share|improve this answer
I imagine more buttons could be added by simply adding it to the parameter list and naming it correctly. Nice solution! – GONeale Aug 30 '11 at 0:34

this is a better answer, so we can have both text and value for a button:

http://weblogs.asp.net/dfindley/archive/2009/05/31/asp-net-mvc-multiple-buttons-in-the-same-form.aspx

</p>
<button name="button" value="register">Register</button>
<button name="button" value="cancel">Cancel</button>
</p>

and the controller:

public ActionResult Register(string button, string userName, string email, string password, string confirmPassword)
{
if (button == "cancel")
    return RedirectToAction("Index", "Home");
...

in short its a SUBMIT button but you choose the name using the name attribute, its even more powerful because your not obligated to the name submit or button in the controller method parameters, you can call it as you like...

share|improve this answer

Can you not find out using Request.Form Collection? If process is clicked the request.form["process"] will not be empty

share|improve this answer

I suggest looking at this post. I like the second solution since you are programming the logic in the controller and not in the view.

share|improve this answer
1  
The second solution uses the same name attribute for both submit buttons and inspects the value attribute in the controller which could be problematic. Imagine for example a Chinese web site. IMHO it is better to use the name attribute in the controller. – Darin Dimitrov Nov 11 '09 at 10:17

Martin wrote a neat post about this.

share|improve this answer

Here's a really nice and simple way of doing it with really easy to follow instructions:

http://blog.maartenballiauw.be/post/2009/11/26/Supporting-multiple-submit-buttons-on-an-ASPNET-MVC-view.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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