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屬性,但當然它不會回發。你到底在找什麼? –