protected void Button1_Click1(object sender, EventArgs e)
{
if (ListBox1.SelectedItem.Text != null)//(error come开发者_JAVA技巧s here)
{
string text = null;
text = ListBox1.SelectedItem.ToString();
ListBox2.Items.Add(text);
ListBox1.Items.Remove(text);
The Error occur when there is no item selected :
Replace with this to verify that SelectedItem is not null:
protected void Button1_Click1(object sender,EventArgs e)
{
if (ListBox1.SelectedItem != null && ListBox1.SelectedItem.Text != null)
{
string text = null;
text = ListBox1.SelectedItem.ToString();
ListBox2.Items.Add(text);
ListBox1.Items.Remove(text);
精彩评论