以下代碼有什麼問題? 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;
}
你修整調用'GridView1.DataBind();';後'GridView1.DataSource = DT'吧? – 2014-08-31 21:40:10
嘗試在數據綁定後設置單元格文本。或者,也許你應該使用'GridView1.Columns [x] .HeaderText ='''。 – Malk 2014-08-31 22:21:46
@TasosK。是的,我試過了。沒有工作 – JasonStack 2014-09-01 03:46:31