There is a view that uses a partial view. In this partial view there is a BeginForm, data fields and a submit button.

How can a second submit be made to a submission that uses this partial submission and that it also transmits data from this partial submission?

    1 answer 1

    Nested BeginForm unfortunately cannot be used. You can use javascript and send a synchronous / asynchronous post request from a partial view. In this case, the internal BeginForm is not needed. And for the entire view, there will be one common submit.

    • I rewrote the code. Instead of a helper, I wrote the usual form via html and used the form attribute. - Andryxa