Skip to main content

Posts

Showing posts with the label bind html textbox without use of html helper and MVC Razor

Bind html text-box without use of html helper and MVC Razor

With using MVC Razor @ Html.TextBoxFor(x => x.Reseller) @ Html.TextBox(x => x.Reseller) Without using   MVC Razor and HTML helper < input type ="text" value =" @ Model.Reseller " name =' @ Html.NameFor(x => x.Reseller) ' > Thank you!