在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
复制代码 代码如下: int intCount = this.GridView1.Rows.Count; //总行数 for (int i = 0; i < intCount; i++) { Label1.Text = ((HyperLink)GridView1.Rows[i].Cells[0].Controls[0]).Text.ToString().Trim(); }
上面都是利用for来遍历ridview控件,下面我来利用foreach来遍历控件。 复制代码 代码如下: foreach (GridViewRow row in GridView1.Rows) { CheckBox cb = (CheckBox)row.FindControl("CheckBox2"); if(cb.Checked==true) { } } |
请发表评论