Here is an example in your .aspx view:
"UserController", .
" Save()" - .
<%
using (Html.BeginForm<UserController>(x => x.Save(null, null, Model.User.ID, null, null), FormMethod.Post, new { id = "formUser" })) {
%>
<%= Html.AntiForgeryToken() %>
<%: Html.ValidationSummary(true) %>
...
<% } %>
, .