Just having an attribute checkedon is inputenough to test it. In HTML, you just need to have checkedit in XHTML, it should be checked="checked", but in any case you want to exclude the entire attribute if it is not set.
GetIsChecked ( ) "checked='checked'", String.Empty. , checked ( ). :
<input name="phoneRadio" class="phoneRadio" id="rbDefaultPhone" type="radio" <%# GetChecked(Eval("IsDefault"))%> />
protected string GetChecked(object isDefault)
{
return (bool)isDefault ? "checked='checked'" : string.Empty;
}