0

我有一个通过计时器更新的列表框,并在 UpdatePanel 中按预期工作。

但是我无法触发 selectedindexchanged 事件。我认为这与部分回发有关。有人知道我能做些什么来完成这项工作吗?

当我将它移出 UpdatePanel 时,它工作正常。但是显然我不能做部分回发。

<asp:UpdatePanel ID="UpdatePanel" runat="server" UpdateMode="Conditional">
<ContentTemplate>
    <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="500"></asp:Timer>
    <asp:ListBox ID="ListBox_JobPositions" OnSelectedIndexChanged="ListBox_JobPositions_SelectedIndexChanged"  runat="server" Height="750px" Width="300px" DataSourceID="sqlDataSource" DataTextField="Company" DataValueField="Pid"></asp:ListBox>
</ContentTemplate>
</asp:UpdatePanel>

更新:

现在尝试了以下更改,计时器事件仍在工作,但 selectedindexchanged 事件没有。我迷路了。

<asp:UpdatePanel ID="UpdatePanel" runat="server" ChildrenAsTriggers="False" UpdateMode="Conditional">
<ContentTemplate>
    <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="500"></asp:Timer>
    <asp:ListBox ID="ListBox_JobPositions" runat="server" Height="750px" Width="300px" DataSourceID="sqlDataSource" DataTextField="Company" DataValueField="Pid" OnSelectedIndexChanged="ListBox_JobPositions_SelectedIndexChanged" AutoPostBack="True"></asp:ListBox>
</ContentTemplate>
<Triggers>
    <asp:AsyncPostBackTrigger ControlID="Timer1" />
</Triggers>

这是当列表框在 UpdatePanel 内时不会触发的事件,但在不在时会起作用。

protected void ListBox_JobPositions_SelectedIndexChanged(object sender, EventArgs e)
    {
        Response.Write("test");
    }
4

2 回答 2

4

您没有收到事件的原因是,您的更改事件不会导致回发。您的回发是由计时器引起的。

asp.net 接收到的事件是计时器事件,而不是 ListBox 事件。

要解决此问题,您应该设置AutoPostBack为 true。这将导致 ListBox 在数据更改并且您的事件应该触发时立即执行 PostBack。

<asp:ListBox ID="ListBox_JobPositions" AutoPostBack="True"  
     OnSelectedIndexChanged="ListBox_JobPositions_SelectedIndexChanged"  
     runat="server" Height="750px" Width="300px" 
     DataSourceID="sqlDataSource" 
     DataTextField="Company" 
     DataValueField="Pid">
</asp:ListBox>

由于您已将 设置UpdateModeConditional,因此您还应该将 设置ChildrenAsTriggers为 true。这样,List 会导致 PostBack,这也将是部分更新。

<asp:UpdatePanel ID="UpdatePanel" runat="server" 
                 UpdateMode="Conditional" 
                 ChildrenAsTriggers="True">
于 2013-03-21T05:26:04.620 回答
0

现在可以工作,必须手动指定异步和完整回发触发器。谢谢你的帮助。

<asp:UpdatePanel ID="UpdatePanel" runat="server" ChildrenAsTriggers="False" UpdateMode="Conditional">
<ContentTemplate>
    <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="500"></asp:Timer>
    <asp:ListBox ID="ListBox_JobPositions" runat="server" Height="750px" Width="300px" DataSourceID="sqlDataSource" DataTextField="Company" DataValueField="Pid" OnSelectedIndexChanged="ListBox_JobPositions_SelectedIndexChanged" AutoPostBack="True"></asp:ListBox>
</ContentTemplate>
<Triggers>
    <asp:AsyncPostBackTrigger ControlID="Timer1" />
    <asp:PostBackTrigger ControlID="ListBox_JobPositions" /> 
</Triggers>
</asp:UpdatePanel>
于 2013-03-21T06:30:53.800 回答