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?
|
I have two buttons on my MVC form:
From my Controller action how do I know which one have been pressed? |
|||
|
|
|
Name both your submit buttons the same
Then in your controller get the value of submit. Only the button clicked will pass it's value.
You can of course assess that value to perform different operations with a switch block.
|
|||||
|
And in your controller action:
|
|||
|
|
this is a better answer, so we can have both text and value for a button:
and the controller:
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... |
|||
|
|
|
Can you not find out using Request.Form Collection? If process is clicked the request.form["process"] will not be empty |
|||
|
|
|
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. |
|||||
|
|
Here's a really nice and simple way of doing it with really easy to follow instructions: |
||||
|
|