问题描述
gridView取值方法查询后是gridView.GetRowCellValue()方法,为什么我的项目中没有GetRowCellValue方法啊,应该怎样实现单元格取值?
解决方案
解决方案二:
gv.Rows[i].Cells[j]
解决方案三:
楼上说对了。。。。。。。。
解决方案四:
如果是取文本:stringvalue=GridView1.Rows[rowIdx].Cells[colIdx].Text;如果是取控件:Labellabel=(Label)GridView1.Rows[rowIdx].Cells[colIdx].FindControl("Label1");
解决方案五:
楼主说的GetRowCellValue()方法是DevExpress的控件GridControl才有,那不是Winfom自带的,是第三方组件
解决方案六:
TextBoxtxtValue;introwsCount=this.Gv.Rows.Count;//遍历for(inti=0;i<rowsCount;i++){//获行当前行gridRow=this.Gv.Rows[i];//通过DATAKEYS来取行没显示出来的ID号pd.ID=Convert.ToInt32(this.Gv.DataKeys[i].Value);//批量更新txtValue=(TextBox)gridRow.FindControl("txtComment1");//获取到txtComment1}
解决方案七:
gv.Rows[i].Cells[j]1楼说得对
时间: 2024-11-24 08:20:47