开发者

IFrame not to be reloaded on ASP.NET postback

开发者 https://www.devze.com 2023-01-27 07:12 出处:网络
I have an IFrame on my asp.net page along with other user controls such as radiobutton, textbox, etc.

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" />

0

精彩评论

暂无评论...
验证码 换一张
取 消