-2

在我的 asp.net 应用程序中,我有两个下拉列表,如果我选择第一个的一个值意味着自动想要更改下拉两个的值,但它不起作用。这是我的 asp 代码。

<asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            <asp:Label ID="Label1" runat="server" Text="State"></asp:Label>&nbsp;&nbsp;&nbsp;
            <asp:DropDownList ID="ddlState" runat="server" Height="23px" Width="195px" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"
                AutoPostBack="True">
                <asp:ListItem>--Select--</asp:ListItem>
                <asp:ListItem>Kerela</asp:ListItem>
                <asp:ListItem>Tamilnadu</asp:ListItem>
                <asp:ListItem>Karnataka</asp:ListItem>
            </asp:DropDownList>
            <br />
            <br />
            <br />
            <br />
            <asp:Label ID="Label2" runat="server" Text="District"></asp:Label>&nbsp;&nbsp;&nbsp;
            <asp:DropDownList ID="ddlDistrict" runat="server" Height="23px" Width="189px" AutoPostBack="True">
            </asp:DropDownList>
        </ContentTemplate>
    </asp:UpdatePanel>
4

1 回答 1

1

我照原样复制了您的代码,并将选定的索引更改事件定义为

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{ 
     ListItem li = new ListItem("text");
     ddlDistrict.Items.Add(li);
}   

它工作得很好。你可能还有其他问题。您可以复制您选择的索引更改事件代码吗?

于 2013-05-21T10:23:00.577 回答