我有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>