0

有没有人在使用 c# 的 EditTemplate 中有一个带有 gridview 的 formview 示例?gridview 的数据源是一个数据表。

设置 dt 数据源时,我收到错误 Object reference not set to an instance of an object

Gridview gv1 = (Gridview)fv1.FindControl("gv1") as GridView;
DataTable dtH = gv1.DataSource as DataTable
dtH = hist.Fetch(acct,dt);

谢谢

4

1 回答 1

0

尝试这个:

Gridview gv1 = fv1.FindControl("gv1") as GridView;
if (gv1 != null)
{
  DataTable dtH = gv1.DataSource as DataTable
  dtH = hist.Fetch(acct,dt)
}
于 2010-01-28T22:16:01.827 回答