Adding a custom class to Radio Buttons in ASP.NET MVC 4

Viewed 13130

I'm trying to add Bootstrap classes to a set of radio buttons.

@Html.RadioButtonFor(model => model.Male, !Model.Male) Female
@Html.RadioButtonFor(model => model.Male, Model.Male) Male

Just don't seem to get the right way of doing it. Any help appreciated. Thanks

1 Answers
Related