Please help me how can I write Bootstrap css class for @TextboxFor
when its under @foreach
loop
foreach (MasterTable item in Model._ListMasterTable)
{
@Html.TextBoxFor(x => x._ListMasterTable, new { Value = item.Master_Name });
}
Thank you