You can do like this...
<asp:RadioButtonList
ID="rbl1"
runat="server">
<asp:ListItem
Text="A"
Selected="True"></asp:ListItem>
<asp:ListItem
Text="B"></asp:ListItem>
<asp:ListItem
Text="C"></asp:ListItem>
</asp:RadioButtonList>
<asp:Button
ID="btnReset"
runat="server"
Text="Reset"
OnClientClick="return resetFun();"
/>
<script type="text/javascript">
function resetFun() {
var radioButtons = document.getElementsByName('<%=rbl1.ClientID%>');
for (var x = 0; x < radioButtons.length; x++) {
if (radioButtons[x].checked) {
radioButtons[x].checked = false;
return false;
}
}
}
</script> </script>