我有以下更新面板,但它似乎并不想更新。 AsyncPostBackTrigger GroupApply2没有更新,我真的很困惑为什么。我试过搬东西但没有运气。有什么想法吗?脚本管理器显然是特定的,我在其他页面上运行更新就好了。
<asp:UpdatePanel ID="UPan01" runat="Server" UpdateMode="always">
<ContentTemplate>
<p>
How is this group applied?:
<asp:DropDownList ID="GroupApply2" CssClass="textbox" runat="server" AutoPostBack="true" OnSelectedIndexChanged="GroupApply2_SelectedIndexChanged">
<asp:ListItem Text="Select" />
<asp:ListItem Text="To the Country " />
<asp:ListItem Text="Just Your Site" />
<asp:ListItem Text="Commodity" />
</asp:DropDownList>
</p>
<asp:Label ID="Build2" runat="server" Text="Label" Visible="true"></asp:Label>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="GroupApply2" EventName="SelectedIndexChanged" />
</Triggers>
</asp:UpdatePanel>
答案 0 :(得分:0)
谢谢