62,271
社区成员
发帖
与我相关
我的任务
分享
protected void Page_Load(object sender, EventArgs e)
{
this.ListBox1.Items.Add("aa");
this.ListBox1.Items.Add("bb");
this.ListBox1.Items.Add("cc");
this.ListBox1.Items.Add("dd");
this.ListBox1.Items.Add("ee");
}
protected void Button1_Click(object sender, EventArgs e)
{
if (this.ListBox2.Items.IndexOf(this.ListBox1.SelectedItem) == -1)
{
this.ListBox2.Items.Add(this.ListBox1.SelectedItem);
}
}
private void Form1_Load(object sender, EventArgs e)
{
this.listBox1.Items.Add("111111111");
this.listBox1.Items.Add("22222222");
this.listBox1.Items.Add("333333333333");
this.listBox1.Items.Add("44444444444");
this.listBox1.Items.Add("55555555555");
this.listBox1.Items.Add("66666666666666");
}
private void button1_Click(object sender, EventArgs e)
{
if (this.listBox2.Items.IndexOf(this.listBox1.SelectedItem) == -1)//Listbox2中不存在添加
{
this.listBox2.Items.Add(this.listBox1.SelectedItem);
}
}
this.ListBox3.DataSource = ds.Tables["class2"];
this.ListBox3.DataTextField = "class2_name";
this.ListBox3.DataValueField = "class1_name";
this.ListBox3.DataBind();