I have radiobuttonlist that i have set to autopostback, but when a user clicks a button, there is no postback.
Any suggestions?
I have radiobuttonlist that i have set to autopostback, but when a user clicks a button, there is no postback.
Any suggestions?
I assume by "when a user clicks a button" you mean when a user clicks one of the radio button options. Without seeing any code, two common scenarios would be:
If it is the latter scenario and you are using UpdatePanels, try putting the RadioButtonList inside its own UpdatePanel, with AutoPostBack set to true on the RadioButtonList and the UpdateMode on the UpdatePanel set to "Always" (the default value).