2014-08-31 139 views
0

以下代码有什么问题? GridView GridView1根本不在页面上显示。GridView不绑定数据源

public void display_range_mark() 
    { 
     int from = int.Parse(ddl_from_mark.SelectedValue.ToString()); 
     int to = int.Parse(ddl_to_mark.SelectedIndex.ToString()); 
     DataTable dt=Data.DoSomthing(string.Format("select ts.Name,ts.FamilyName,ts.Id_student,td.Name,tn.NomreAdad from tblStudent ts,tblDars td,tblNomre tn where tn.NomreAdad>='{0}' AND tn.NomreAdad<='{1}' AND ts.Id=tn.Id_student AND td.Id=tn.Id_dars",from,to)); 
     //DataTable data = Data.DoSomthing(string.Format("select t.Name,t.Id from tblStd t where t.DateSabt='{0}'", p.GetYear(DateTime.Now))); 
     GridView1.DataSource = dt; 
     GridView1.HeaderRow.Cells[0].Text = "نام"; 
     GridView1.HeaderRow.Cells[1].Text = "نام خانوادگی"; 
     GridView1.HeaderRow.Cells[2].Text = "شماره دانش آموزی"; 
     GridView1.HeaderRow.Cells[3].Text = "درس"; 
     GridView1.HeaderRow.Cells[4].Text = "نمره"; 
     GridView1.DataBind(); 



    } 

我收到此错误:
异常详细信息:System.NullReferenceException:未设置为一个对象的实例对象引用。在这条线发生 错误:

GridView1.HeaderRow.Cells[0].Text = "نام"; 

顺便说,对于Data.DoSomthing代码是作为folllows(它位于类内数据库):

SqlConnection sc = new SqlConnection(@"Data Source=.;Initial Catalog=School;Integrated Security=True"); 



public DataTable DoSomthing(string text) 
    { 
     sc.Open(); 
     DataTable data = new DataTable(); 
     try 
     { 
      SqlCommand command = new SqlCommand(); 
      command.Connection = sc; 
      command.CommandType = CommandType.Text; 
      command.CommandText = text; 

      SqlDataAdapter sd = new SqlDataAdapter(command); 
      sd.Fill(data); 
      if (data.Rows.Count == 0) 
       data = null; 
     } 
     catch (Exception ex) 
     { 
      sc.Close(); 
      return null; 
     } 
     finally 
     { 
      if (sc.State != ConnectionState.Closed) 
      { 
       sc.Close(); 
      } 
     } 
     return data; 
    } 
+0

你修整调用'GridView1.DataBind();';后'GridView1.DataSource = DT'吧? – 2014-08-31 21:40:10

+0

尝试在数据绑定后设置单元格文本。或者,也许你应该使用'GridView1.Columns [x] .HeaderText ='''。 – Malk 2014-08-31 22:21:46

+0

@TasosK。是的,我试过了。没有工作 – JasonStack 2014-09-01 03:46:31

回答

2

在哪里是连接到数据库并获取值的连接对象吗?

做到这一点的方法:

string query="select ts.Name,ts.FamilyName,ts.Id_student,td.Name,tn.NomreAdad from  tblStudent ts,tblDars  td,tblNomre tn where tn.NomreAdad>[email protected] AND tn.NomreAdad<[email protected] AND ts.Id=tn.Id_student AND td.Id=tn.Id_dars"; 

//Create Sqlconnection object 
using(SqlConnection con = new SqlConnection(connectionstring)) 
{ 
//open the connection 
con.Open(); 
SqlDataAdapter sda = new SqlDataAdapter(query, con); 
//To avoid sql injection using parameters 
sda.Paramaters.AddWithValue("@from",from); 
sda.Paramaters.AddWithValue("@to",to); 
DataTable dt = new DataTable(); 
sda.Fill(dt); 
GridView1.DataSource = dt; 
GridView1.DataBind(); 
} 
+0

一切都很好!它没有填充数据表,因为数据库中没有匹配,通过改变它的值,它最终能够工作。而且,正如在注释中说的那样,data.DataBind()在列标题分配之前 – JasonStack 2014-09-01 04:34:11

+0

哦很酷,这就是为什么我要求你在调试模式下运行,并且添加参数,因为我添加到命令避免SQL注入。不知道为什么它被投票 – Partha 2014-09-01 04:46:45