How to prevent page from refreshing?

146 Views Asked by At
 <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 :)

1

There are 1 best solutions below

0
On

Use UpdatePanels. They do partial postback, not full page refreshing.