Html.RadioButton:-

Radiobuttons are generally grouped together to provide a range of option for single value.

Example:

            
@Html.RadioButton("Title", "Red") Red
@Html.RadioButton("Title", "Green", true) Green
@Html.RadioButton("Title", "Blue") Blue
            
            

Strongly typed

            
@Html.RadioButtonFor( m => m.EmpName ,"1") Sasi
@Html.RadioButtonFor( m => m.EmpName ,"2") Sathish
@Html.RadioButtonFor( m => m.EmpName ,"3") Praveen
            
            

Output: