qyjun

博客园 首页 新随笔 联系 订阅 管理

1、遍历GridView
foreach (GridViewRow row in GridView1.Rows)
   {
        string mylable = ((Label)row.FindControl("Label1")).Text;
       Response.Write(mylable);
   }

2、遍历DataList
 foreach (DataListItem dl in this.dlWebSite.Items)
        {
            CheckBox cb = (CheckBox)dl.FindControl("chbWebSite");
            if (cb.Checked)
            {
               ...           
             }


        }

posted on 2007-09-01 08:59  qyjun  阅读(1253)  评论(0编辑  收藏  举报