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

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

                
                        @model Enum
@foreach (var value in Enum.GetValues(Model.GetType()))
{
    @Html.RadioButtonFor(m => m, value)
    @Html.Label(value.ToString())
}
                    
                
 

how to fill model enum with bradio button asp razor

                        
                                @{var numList = Enum.GetValues(typeof(Models.numbers));}
@foreach (object radiotext in numList)
{
    @Html.RadioButton("radioname", radiotext.ToString())@radiotext.ToString()
}