Im having the following code, however, I can see that the radio button isnt 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%>
加载中,请稍侯......
精彩评论