Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to get the selected radio button item server side?
I have 5 radio buttons with unique ids and same group name with runat='server',
How to get selected radio button in server side and javascript too among the radio button group.

I can't go for asp:radiobuttonlist, due to design issues, \
so I head for html radio buttons.

How can I get the selected radio button, both server side(C#) and client side(Javascript/Jquery)

any suggestion is appreciated.
Posted
Comments
n.podbielski 17-Nov-12 6:11am    
So you have 5 single radios?
[no name] 18-Nov-12 23:20pm    
yeah

1 solution

try this one

JavaScript
function getCheckedRadio(radio_group) {
    for (var i = 0; i < radio_group.length; i++) {
        var button = radio_group[i];
        if (button.checked) {
            return button;
        }
    }
    return undefined;
}
var checkedButton = getCheckedRadio(document.forms.frmId.elements.groupName);
if (checkedButton) {
    alert("The value is " + checkedButton.value);
}
 
Share this answer
 
Comments
Member 10433454 3-Jan-14 3:16am    
If we want to select any one radio button in both sides (Client & Server)simultaneously then what to do??
Ex: Client Side ---Select Age and in server side also ---select Age....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900