Is there any difference between
<form method="post" action="/Controller/Action"></form>
and
@using (Html.BeginForm("Action","Controller")) {}
when other more complex parameters are not used?
I know this question sounds very thorough, but I carefully use a simple HMTL, such as the previous example.
source
share