gpt4 book ai didi

c# - When a certain item on dropdownlist1 is selected, select automatically a certain item on dropdownlist2

转载 作者:太空宇宙 更新时间:2023-11-03 12:01:04 27 4
gpt4 key购买 nike

我想当在下拉列表 1 上选择项目 x5 时,在下拉列表 2 上自动选择项目 y0

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_Itemchanged">
<asp:ListItem Value='5'>x5</asp:ListItem>
<asp:ListItem Value="4">x4</asp:ListItem>
<asp:ListItem Value="3">x3</asp:ListItem>
<asp:ListItem Value="2">x2</asp:ListItem>
<asp:ListItem Value="1">x1</asp:ListItem>
</asp:DropDownList>

<asp:DropDownList ID="DropDownList2" runat="server">
<asp:ListItem Value="0.75">y0.75</asp:ListItem>
<asp:ListItem Value="0.50">y0.50</asp:ListItem>
<asp:ListItem Value="0.25">y0.25</asp:ListItem>
<asp:ListItem Value="0">y0</asp:ListItem>
</asp:DropDownList>

protected void DropDownList1_Itemchanged(object sender, EventArgs e)
{
if (DropDownList1.SelectedItem.Value == "5")
{
DropDownList2.Items.FindByValue("0").Selected = true;
DropDownList2.Items.FindByValue("0.75").Attributes.Add("Disabled", "Disabled");
DropDownList2.Items.FindByValue("0.50").Attributes.Add("Disabled", "Disabled");
DropDownList2.Items.FindByValue("0.25").Attributes.Add("Disabled", "Disabled");
}
}

当我在 dropdownlist1 上选择项目 x4 并在 dropdownlist2 上选择项目 y0.25 之后,当我在 dropdownlist1 上选择 x5 时,它给我“不能在 DropDownList 中选择多个项目”

最佳答案

在列表中使用 SelectedValue 属性:

protected void DropDownList1_Itemchanged(object sender, EventArgs e)
{
if (DropDownList1.SelectedItem.Value == "5")
{
DropDownList2.SelectedValue = "0";
}
}

关于c# - When a certain item on dropdownlist1 is selected, select automatically a certain item on dropdownlist2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57006344/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com