没有autopostback的SelectedIndexChanged事件是真的

时间:2014-04-17 12:11:46

标签: c# asp.net

在我的应用程序中,我使用列表框作为多选模式。我需要在不使用

的情况下为列表框触发SelectedIndexChanged event

autopostback(AutoPostBack=True)

在c#中。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

将您的列表框放入更新面板,见下文:

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
    <asp:UpdatePanel runat="server">
        <ContentTemplate>
            <asp:ListBox ID="ListBox1" SelectionMode="Multiple" OnSelectedIndexChanged="ListBox1_SelectedIndexChanged" AutoPostBack="true" runat="server">
                <asp:ListItem Text="text 1" Value="0"></asp:ListItem>
                <asp:ListItem Text="text 2" Value="1"></asp:ListItem>
                <asp:ListItem Text="text 3" Value="2"></asp:ListItem>
                <asp:ListItem Text="text 4" Value="3"></asp:ListItem>
                <asp:ListItem Text="text 5" Value="4"></asp:ListItem>
            </asp:ListBox>
        </ContentTemplate>
    </asp:UpdatePanel>