<input type="radio" id="rdoHalfDay" name="rdoHalfDay" value="Half Day" />
Above code only render radio button not text
I am using Firefox 9.0.1 also same problem in IE
<%=Html.RadioButton("rdoTest","Cricket") %>;
If I am using above code in Asp.net MVC 3 then below HTML generates that not shows text
<input id="rdot" type="radio" value="Cricket" name="rdot">
Works as defined. To specify radio button text, include it as textual content, preferably using
labelmarkup (though this is not formally required):Note that the value of the
valueattribute of ainput type="radio"only specifies the data to appear in the form data submitted (and could be anything that you can conveniently handle in your software). It is not supposed to appear and will not normally appear as visible content (except if the form handling software has been written to “echo” it to the user).