Hi sajinaboo,
I have created sample that full-fill your requirement.
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
var rbtnZone = $("[id*=rbtnZone]");
var rbtnStore = $("[id*=rbtnStore]");
rbtnZone.click(function () {
if ($(this).is(":checked")) {
rbtnStore.removeAttr("checked");
}
});
rbtnStore.click(function () {
if ($(this).is(":checked")) {
rbtnZone.removeAttr("checked");
}
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="rbtnZone" type="radio" name="rb" value="rbtnZone" /><label for="rbtnZone">Zone
Wise</label>
<br />
<table id="Table1" cellpadding="3" groupname="rb">
<tr>
<td>
<input id="rbtnStore_0" type="radio" name="rbtnStore" value="0" /><label for="rbtnStore_0">Reliance</label>
</td>
<td>
<input id="rbtnStore_1" type="radio" name="rbtnStore" value="1" /><label for="rbtnStore_1">DMart</label>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
Demo
You can use asp type instead of input type also.
<div>
<asp:RadioButton ID="rbtnZone" runat="server" GroupName="rb" Text="Zone Wise" />
<br />
<asp:RadioButtonList ID="rbtnStore" runat="server" CellPadding="3" GroupName="rb"
RepeatColumns="4" RepeatDirection="Horizontal">
<asp:ListItem Text="Reliance" Value="0" />
<asp:ListItem Text="DMart" Value="1" />
</asp:RadioButtonList>
</div>