2 つのリスト ボックスがあり、最初のリストから 2 番目のリストを自動的に選択しようとしています。問題は、2 番目の Foreach ループでスタックしてしまい、最初のループが非同期で実行されないことです。誰か見てくれませんか、ありがとう。
foreach (ListItem item in this.clb_Departments.Items)
{
foreach (ListItem it in this.cbl_fDepartments.Items)
{
if (item.Value == "2")
{
if (it.Value == "2")
{
if (item.Selected == true)
{
it.Selected = true;
break;
}
}
}
if (item.Value == "3")
{
if (it.Value == "3")
{
if (item.Selected == true)
{
it.Selected = true;
}
}
}
}