Answers for "enum asp core radio button"

0

how to give value to model from radio button html asp with enums if checked

@model MvcTest.Models.Airlines
@foreach (var value in Enum.GetValues(typeof(MvcTest.Models.Airlines)))
{
    @Html.RadioButtonFor(m => m, value)
    @Html.Label(value.ToString())
}
Posted by: Guest on November-22-2020

Code answers related to "enum asp core radio button"

Browse Popular Code Answers by Language