0
<asp:RadioButtonList ID="rbl_donorType" runat="server"
AutoPostBack="true" onselectedindexchanged="rbl_donorType_SelectedIndexChanged" >
如何防止刷新页面(F5),我需要autopostback命令。谢谢:)如何防止页面刷新?
<asp:RadioButtonList ID="rbl_donorType" runat="server"
AutoPostBack="true" onselectedindexchanged="rbl_donorType_SelectedIndexChanged" >
如何防止刷新页面(F5),我需要autopostback命令。谢谢:)如何防止页面刷新?
使用UpdatePanel
s。他们做部分回发,而不是整页刷新。
不知道你在这里问什么。当您将autopostback设置为true时,它将“刷新”页面,但实际执行POST请求。如果你不想这样做,那么就不要设置autopostback属性,但当然它不会回发。你到底在找什么? –