问题描述
值为DATATABLE的绑定值.不是模板列
解决方案
解决方案二:
for(inti=0;i<this.GridView1.Rows.Count;i++){this.lable.text=dt.rows[i]["ID"].tostring();}这样试试
解决方案三:
有这样的错误错误1无法将带[]的索引应用于“System.Web.UI.WebControls.GridViewRow”类型的表达式这样好用TextBoxtb=(TextBox)gvShop.Rows[i].FindControl("tbSl");这样就不好用gvShop.Rows[i]["sp_jg2"]
解决方案四:
foreach(GridViewRowgrRowinthis.gvShop.Rows){TextBoxtb=(TextBox)grRow.cells[1].FindControl("tbSl");if(tb!=null){tb.text="123213";}}
解决方案五:
不知道你gridview里面还有控件
解决方案六:
不是.不是这个意思.不要控件.就是正常绑定的那种.是BoundField
时间: 2024-10-07 18:45:31