我有 2 个 UpdatePanel,第一个有一个按钮,第二个有一个中继器,我不知道为什么当我单击查找时,即使单击后数据源发生更改,中继器也不会更改。
<asp:UpdatePanel ID="pnl" runat="server" >
<ContentTemplate>
.
.
<asp:Button ID="btnfind" runat="server" Text="Find " OnClick="btnfind_Click" />
<ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="upd" runat="server" UpdateMode="Conditional" >
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnfind" EventName="Click" />
</Triggers>
<ContentTemplate>
<asp:Repeater runat="server" ID="rptItems" EnableViewState="false">
...
</asp:Repeater>
</div></div>
</ContentTemplate>
</asp:UpdatePanel>