Joshua FearYou
Joshua FearYou

Reputation: 1

How to prevent page from refreshing?

 <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

Answers (1)

Bharadwaj
Bharadwaj

Reputation: 2553

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

Upvotes: 1

Related Questions