KIẾN THỨC LẬP TRÌNH
...
Về chúng tôi
|
|
Chuyển dữ liệu giữa 2 ListBox trong asp.net
Giả thiết ListBox1 chứa danh sách nhân viên,ListBox2 chứa danh sách nhân viên được assign thwucj hiện công việc trong 1 chu trình nào đó, khi đó chúng ta dùng 2 hàm sau để chọn nhân viên:
protected void btnTo2_s_Click(object sender, EventArgs e) { if (ListBox1.Items.Count > 0 && ListBox1.SelectedIndex > -1) if (ListBox1.SelectedValue.ToString() != "") { while (ListBox1.Items.Count > 0 && ListBox1.SelectedItem != null) { ListItem selectedItem = ListBox1.SelectedItem; selectedItem.Selected = false; ListBox2.Items.Add(selectedItem); ListBox1.Items.Remove(selectedItem); }
} }
protected void btnTo1_s_Click(object sender, EventArgs e) { if (ListBox2.Items.Count > 0 && ListBox2.SelectedIndex > -1) while (ListBox2.Items.Count > 0 && ListBox2.SelectedItem != null) { ListItem selectedItem = ListBox2.SelectedItem; selectedItem.Selected = false; ListBox1.Items.Add(selectedItem); ListBox2.Items.Remove(selectedItem); } } Chúc các bạn thành công, mọi thắc mắc xin gửi về contact@giadinhit.net. Thanks!
BÀI VIẾT LIÊN QUAN
|