在文本框中输入内容,点击“添加”按钮后添加到列表框中;点击“删除”按钮则从列表框中删除选中的元素。
protected void Button1_Click(object sender, EventArgs e)
{
// ListBox1.Text= TextBox1.Text+ ListBox1.Text;
this.ListBox1.Items.Add(TextBox1.Text);
}
protected void Button2_Click(object sender, EventArgs e)
{
string checkobject = this.ListBox1.SelectedItem.ToString();
this.ListBox1.Items.Remove(checkobject);
}