We can select multiple radio button using jquery.
Inside document ready function remove the name attribute from each radio button inside the list
$(document).ready(function () { $("#rblIntrestedTechnology input").each(function () { $(this).removeAttr("name"); }); });
Put your radiobuttonlist id in place of “rblIntrestedTechnology”