If you use Razor view strong, you can use a radio button like
@Html.RadioButtonFor(model => model.PrintOrder, "Sequential", new {@checked="true"}) Sequential
since you need to fix it as a razor view
@Html.RadioButtonFor(x => x.Gender, "Male", new { @checked = "checked" })
Aspx view
<%: Html.RadioButtonFor(x => x.Gender, "Male", new { @checked = "checked" }) %>
source
share