tags:

views:

21

answers:

1

Im having the following code, however, I can see that the radio button isnt being diplayed. Only the label is being displayed. what is wrong with the code?

 <%Html.RadioButton("Role", Role.User, true);%><%=Role.User%>
A: 

Try

<%=Html.RadioButton("Role", Role.User, true);%><%=Role.User%>
Salil
<%=Html.RadioButton("Role", Role.User, true)%><%=Role.User%> , just to remove another error that crops in.