Anyone Please explain this code step by step
@using (Html.BeginForm())
{
Your Name: @Html.TextBoxFor(x => x.Name)
Your Email: @Html.TextBoxFor(x => x.Email)
Your Gender: @Html.TextBoxFor(x => x.Gender)
Your Phone: @Html.TextBoxFor(x => x.Phone)
Your Address: @Html.TextBoxFor(x => x.Address)
}
why we use like this @Html.TextBoxFor(x => x.Name)

Vaibhav DeshmukhPosted Feb 28, 2017, 4:40 AM
Nitin SontakkePosted Feb 28, 2017, 2:06 AM