What format do you prefer to create your forms in MVC?
<% Html.Form() { %>
<% } %>
or
<form action="<%= Url.Action("ManageImage", "UserAccount") %>" method="post">
</form>
I understand that Html.Form () with PR5 now just uses the URL provided by the request. However, something about this does not suit me, especially since I will receive all the baggage of any requests included in it.
What do you do?
source
share