How to prevent page from refreshing?

136 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 answers

0
Bharadwaj On

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