Basic
We use forms to send data from our users to our servers, We always use an HTML helper to generate a form. Your code should look something like this
@using (Html.BeginForm("Action", "Controller", null, FormMethod.Post, new { role = "form", @id = "formChange" }))
{
	<!-- Your inputs here -->
}