Click here to Skip to main content
15,905,238 members

Response to: problem with radiobuttonlist in update panel

Latest Revision
You are missing OnSelectedIndexChanged="radiobutton_selectchanged" in the radio button
ASP.NET
<asp:radiobuttonlist id="rdbRemarks" runat="server" AutoPostBack="True" repeatdirection="Horizontal" OnSelectedIndexChanged="radiobutton_selectchanged ">
    <asp:listitem value="F1">Accept</asp:listitem>
    <asp:listitem value="F1">Objection Clear</asp:listitem>
    <asp:listitem value="F4">Objection</asp:listitem>
    <asp:listitem value="R">Reject</asp:listitem>
</asp:radiobuttonlist>
also the code behind must have this handler defined
C#
protected void radiobutton_selectchanged(object sender, EventArgs e)
    {

    }
Posted 5-Nov-12 17:45pm by TheCoolCoder.
Tags: ,