我已经在页面中放置了一个更新面板并且它工作正常。在那个页面中我正在加载一个转发器并且它也正常工作。但是在那个转发器中我在下拉列表中触发了一个事件“OnSelectedIndexChanged” 。使用它时页面是变得神清气爽。似乎更新面板在那里不起作用。
<asp:UpdatePanel ID="update_invest" runat="server" UpdateMode="Always">
<ContentTemplate>
<asp:Repeater ID="rptinvest" runat="server" OnItemDataBound="rptactions_ItemDataBound">
<ItemTemplate>
<td>
<asp:DropDownList ID="ddlemployee" runat="server" OnSelectedIndexChanged="ddlEmployee_SelectedIndexChanged"
AppendDataBoundItems="true" AutoPostBack="True">
</asp:DropDownList>
</td>
</ItemTemplate>
</asp:Repeater>
以上是代码....!!
谢谢阿尔沙德..!