Click here to Skip to main content
15,889,909 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have added a nearly 20 radiobuttonlist this should call a methode while changing selected index but page should not refresh.

Please give me a solution




XML
<pre lang="HTML">

   <asp:ScriptManager ID="ScriptManager1" runat="server">
            </asp:ScriptManager>

            <asp:UpdatePanel ID="updateExamPanal" runat="server" updatemode="Conditional">
            <Triggers>
                  <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
                     </Triggers>
                  <ContentTemplate>
                  <asp:Timer ID="Timer1" runat="server" interval="500000" ontick="Timer1_Tick">
               </asp:Timer>
                  <asp:Panel runat="server" ID="QusPaper">

                              </asp:Panel>
                  </ContentTemplate>

            </asp:UpdatePanel>
</pre>


inside of the   QusPaper panal i have added 20 radiobuttonlist dynamically . that
radiobuttonlist selectedindex changed   event page get reload i don't want reload page
Posted
Updated 12-Mar-12 20:11pm
v2
Comments
Prasad_Kulkarni 13-Mar-12 2:03am    
Use update panel
Sergey Alexandrovich Kryukov 13-Mar-12 2:04am    
Not enough information. How about a (short!) code sample?
--SA
ganeshbdas 13-Mar-12 5:46am    
please chk now

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