日期:2014-05-18 浏览次数:20468 次
private void GetAllComInformation() { DataTable dt = new DataTable(); dt = dw.PreventGetAll(); GridView_Prevent.DataSource = dt; GridView_Prevent.DataBind(); }
------解决方案--------------------
rowdataBound 事件中
//dt 为返回的datatable,即包含 “活动”的Id 和名称的那张表
lable lbl = (lable)e.rows.cells["对应列名"].controls[0];
lbl.text = dt.rows[0]["活动列名"].toString();
------解决方案--------------------
private void GetAllComInformation()
改成
protected void GetAllComInformation()
或者
public void GetAllComInformation()
不过,楼主这种写法应该会报错吧