MVC 3 will translate underscores in html attribute names into hyphens, so something like this should do the trick
@Html.TextBoxFor(m => m.Name, new { data_bind="value: Name", @class = "title width-7" })
MVC 3 will translate underscores in html attribute names into hyphens, so something like this should do the trick
@Html.TextBoxFor(m => m.Name, new { data_bind="value: Name", @class = "title width-7" })