c# razor RadioButtonFor enum code example
Example 1: 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()
}
Example 2: how to fill model enum with bradio button asp razor
namespace Models
{
public enum numbers
{
one = 1,
two = 2,
three = 3
}
}