protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
    {
        SqlConnection conn = SqlConnection("str");//str为连接字符串
        SqlCommand comm = new SqlCommand();
        comm.Connection = conn;
        comm.CommandType = CommandType.Text;
        comm.CommandText = "Select *  From tb_promble Where title like '%" +this.tb_ggjz.Text.ToString()+" %'";
        conn.Open();
        SqlDataAdapter sda = new SqlDataAdapter(comm);
        sda.SelectCommand = comm;
        DataSet ds = new DataSet();
        sda.Fill(ds);
        this.DataList1.DataSource = ds.Tables["tb_promble"].DefaultView;
        //this.DataList1.DataKeyField = "ID";
        this.DataList1.DataBind();
        sda.Dispose();
        ds.Dispose();
        comm.Dispose();
        conn.Close();
    }
出现错误:
   this.DataList1.DataSource = ds.Tables["tb_promble"].DefaultView;
   未将对象引用设置到对象实例!
各位帮帮,忙呀  谢谢