@Html.RadioButtonFor(Model => Model.Location, \"Location\") @Html.LabelFor(Model=>Model.Location,\"Location\") @Html.RadioButtonFor(Model=>Model.Mod
Use the function without "for", then you can specify the name:
@Html.RadioButton("newname", "value", new { @id="oldname" })