怎么办呀?我的问题一直没有得到解决
哪位前辈帮帮我呀?
哪位前辈帮帮我呀?
不求尽如人意,但求无愧我心!
我是想用逐个字段赋值的方法将几条Select语句查询出来的数据集在一个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)(1).Tostring().Trim()
GridView1.Rows(0).Cells(2).Text=ds.Tables(0).Rows(0)(2).Tostring().Trim()
GridView1.Rows(0).Cells(3).Text=ds.Tables(0).Rows(0)(3).Tostring().Trim()
GridView1.Rows(0).Cells(4).Text=ds.Tables(0).Rows(0)(4).Tostring().Trim()
第一行报错:"索引超出范围,必须为非负值并小于集合大小,参数明:index"
我查过Table(0).rows(0)是有数据的,可以写出来的。
而且直接用GridView1.DataSource=ds
GridView1.DataBund()
也是可以显示出数据集的内容的
我先写语句Me.GridView1.Rows.Add()或者GridView1.Rows.Add()
都会报错:"Add"不是"System.Web.UI.WebControls.Gridviewcollection"的成员