Click here to Skip to main content
Sign Up to vote bad
good
See more: ASP.NETVB.NET
i have radiobuttonlist with in update panel.
 
radiobutton_selectchanged event are not fired.
 
<asp:Panel ID="SelectAttributesPanel" runat="server" Width="230px" BackColor="#F0F8FF" BorderColor="Black" BorderWidth="1" Font-Names="Verdana" Font-Size="X-Small" >
 <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
 <ContentTemplate>
                                        <asp:RadioButtonList ID="rdbRemarks" runat="server" RepeatDirection="Horizontal"
AutoPostBack="True">
<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>
 </ContentTemplate>
 <Triggers>
 <asp:AsyncPostBackTrigger ControlID="rdbRemarks" EventName="SelectedIndexChanged" />
 </Triggers>
 </asp:UpdatePanel> </asp:Panel>
Posted 5 Nov '12 - 17:29


2 solutions

You are missing OnSelectedIndexChanged="radiobutton_selectchanged" in the radio button
                <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
    protected void radiobutton_selectchanged(object sender, EventArgs e)
        {
 
        }
  Permalink  
Your All Code is almost right but u missing onselectedindexchanged events in radio button list so first double click events in radio button list in your design page so it generate radiobutton_selectchanged in back end code then check ….
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 216
1 Richard MacCutchan 145
2 Sergey Alexandrovich Kryukov 129
3 Tadit Dash 129
4 Santhosh G_ 115
0 Sergey Alexandrovich Kryukov 10,338
1 OriginalGriff 7,965
2 CPallini 4,201
3 Rohan Leuva 3,522
4 Maciej Los 3,159


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 6 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid