0
我想通過下面的代碼添加數據:如何添加數據到GridView?
protected void gridview1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (Session["BranchingCode"] != null)
{
List<CourseDetail> studentList = Course_Detail.GetStudentListOfBranch(Session["BranchingCode"].ToString(), Session["CurrentSession"].ToString());
if (studentList != null)
{
for (int i = 0; i < studentList.Count(); i++)
{
e.Row.Cells[0].Text = studentList[i].UserNameRoll;
e.Row.Cells[1].Text = studentList[i].StudentName;
}
}
}
GridView1.DataBind();
}
}
但因爲沒有datasource
附着的GridView,此事件不火。 請告訴我該怎麼辦? 有沒有辦法強行啓動這個事件或者做其他事情&在其他地方輸入數據..?
我不能添加它..它說gridview1不在當前上下文頁面加載.. – 2013-02-09 08:30:28