後來發現是,UpdateMode 未設定為 Conditional
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<asp:UpdatePanel ID="UpdatePanel" runat="server" UpdateMode="Conditional"> | |
<ContentTemplate> | |
<asp:TextBox ID="TextBox" runat="server" OnTextChanged="TextBox_TextChanged" AutoPostBack="true"></asp:TextBox> | |
</ContentTemplate> | |
<Triggers> | |
<asp:AsyncPostBackTrigger ControlID="TextBox" EventName="TextChanged" /> | |
</Triggers> | |
</asp:UpdatePanel> |