mvc html helper radio button code example
Example: How to set the value to be selected of the radio button in mvc
• Here , employee is an object and from that object we are fetching
Gender property which is of string type.
@if (employee.Gender == "Male")
{
<input type="radio" name="Gender" value="Male" checked="checked" />
<text>Male</text>
}
else
{
<input type="radio" name="Gender" value="Male" />
<text>Male</text>
}