...........................
这个........一般都是findConterl的方法来进行了,上网找找吧,现在坛子里不喜欢直接要代码的帖子

解决方案 »

  1.   

    [email protected]
    多谢了!!!!
      

  2.   

    从datagrid中得到选定行的主键值,并用逗号分开,
    然后用语句delete from table where key in {主键值}
      

  3.   

    for(int i=0;i<this.dgCheckItem.Items.Count;i++)
    {
    if(((CheckBox)this.dgCheckItem.Items[i].Cells[0].FindControl("Chk")).Checked)
    {
    this.doDel(); }
    }
    this.BindGrid();//重新帮定
      

  4.   

    for(int i=0;i<this.dgTest.Items.Count;i++)
    {
      if(((CheckBox)this.dgTest.Items[i].Cells[0].FindControl("Chk")).Checked)
      {
        this.doDel();
      }
    }
    this.BindGrid();//重新帮定
      

  5.   

    http://www.cs-aspx.net/myinfor.aspx上的Flash是怎么实现的啊