@using (Html.BeginForm())
{
@Html.LabelFor(m => p.Name, "Name:")
@Html.TextBoxFor(m => p.Name)
}
but if i do not want to use html helper extension then how should i code to bind normal html controls and forms with model data. please come with a sample code. thanks
Tom MohanPosted Mar 9, 2015, 8:21 PM