Reputation: 1
<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 :)
Upvotes: 0
Views: 129
Reputation: 2553
Use UpdatePanel
s. They do partial postback, not full page refreshing.
Upvotes: 1