我想实现逐个字段赋值给GridView,报错“索引超出范围……”
我的程序:GridView1.Rows(0).Cells(0).Text=ds.Tables(0).Rows(0)(0).Tostring().Trim()
GridView1.Rows(0).Cells(1).Text=ds.Tables(0).Rows(0)(0).Tostring().Trim()
GridView1.Rows(0).Cells(2).Text=ds.Tables(0).Rows(0)(0).Tostring().Trim()
GridView1.Rows(0).Cells(3).Text=ds.Tables(0).Rows(0)(0).Tostring().Trim()
GridView1.Rows(0).Cells(4).Text=ds.Tables(0).Rows(0)(0).Tostring().Trim()
结果执行是出错:
"索引超出范围,必须为非负值并小于集合大小,参数明:index"
是不是哪里有错误或者缺少应有的设置,请大家指教。
多谢了!!