Radio button not being displayed
Im having the following code, however, I can see that the radio button isn
t being diplayed. Only the开发者_StackOverflow社区 label is being displayed. what is wrong with the code?
<%Html.RadioButton("Role", Role.User, true);%><%=Role.User%>
Try
<%=Html.RadioButton("Role", Role.User, true);%><%=Role.User%>
精彩评论