<asp:RadioButtonList ID="rbl_donorType" runat="server"
AutoPostBack="true" onselectedindexchanged="rbl_donorType_SelectedIndexChanged" >
How to prevent page from refreshing(F5), I need the autopostback command. Thanks :)
<asp:RadioButtonList ID="rbl_donorType" runat="server"
AutoPostBack="true" onselectedindexchanged="rbl_donorType_SelectedIndexChanged" >
How to prevent page from refreshing(F5), I need the autopostback command. Thanks :)
Use
UpdatePanel
s. They do partial postback, not full page refreshing.