我想在DropDown列表中搜索項目,但下面的代碼僅返回列表中最後一項的結果。對於剩餘的項目它返回「國家不存在」我該怎麼做才能使代碼適用於所有項目。如何從下拉列表中搜索項目
protected void SearchBtn_Click(object sender, EventArgs e)
{
string a = SearchCountryTb.Text;
foreach (ListItem item in CountriesDD.Items)
{
if (item.Value == a)
{
YNLabel.Text = "country exixts";
}
else
{
YNLabel.Text = "country doesnot exist";
}
}
}
謝謝你的工作 – Shrugo
當然!如果它有幫助,請隨時將其標記爲答案。 :) – davidsbro