Is it possible when using Html.TextBoxFor to override the name attribute?
Html.TextBoxFor
I have tried with no success. I need to use TextBoxFor to get client side vali
ben's answer got me what I was looking for except you need to wrap in in Html.Raw
@Html.Raw(Html.TextBoxFor(x => x.Data).ToString().Replace("Data", "NewData"))