Click here to Skip to main content
15,891,372 members

Response to: problem with radiobuttonlist in update panel

Revision 2
You are missing OnSelectedIndexChanged="SelectedIndexChanged" in the radio button
ASP.NET
<asp:radiobuttonlist id="rdbRemarks" runat="server" repeatdirection="Horizontal" OnSelectedIndexChanged="SelectedIndexChanged">
                   <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>
the code behind must have this
C#
protected void SelectedIndexChanged(object sender, EventArgs e)
    {

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