我的要求是如果一個項目(textBox中的文本)已經出現在列表框中,然後根本不添加。但其他部分,我不能在我的foreach循環中使用添加item.here我的code.Help我如何添加一個項目,如果一個項目不在列表框中。在列表框中添加一個項目
protected void Button1_Click(object sender, EventArgs e)
{
if (RadioButton1.Checked)
{
if (ListBox1.Items.Count == 0)
{
ListBox1.Items.Add(TextBox1.Text);
Label2.Text = "<b style='color:green'> item updated in the listbox </b>";
}
else
{
foreach (ListItem li in ListBox1.Items)
{
if (li.Text.ToUpper() == TextBox1.Text.ToUpper())
{
Label2.Text = "<b style='color:red'> access denied
break;
}
}
}
}
}
請幫忙....... – chikun