I need to add the following field at my form
I create model and describe this field (the las
@using (Html.BeginForm("Action_Name", "Controller_Name",FormMethod.Post)) { @Html.TextBoxFor(m => m.Email, new {@class = "text_field"}) @Html.ValidationMessageFor(m => m.Email) }