I have an IFrame on my asp.net page along with other user controls such as radiobutton, textbox, etc.
A problem that I am facing ri开发者_开发技巧ght now is that when I click on a radio button, it triggers the postback which make my IFrame reload as well.
Is there any way I could make the IFrame not to reload on the postback?
Thanks.
Set AutoPostBack="false" porperty of all asp.net controls or use update panel <asp:RadioButton Text="text" AutoPostBack="false" runat="server" />
精彩评论