zoukankan      html  css  js  c++  java
  • CheckBox全选

    全选

    foreach (GridViewRow gv in GridView1.Rows)
                {
                    CheckBox cb = (CheckBox)gv.FindControl("CheckBox1");
                    cb.Checked = true;

                }

    删除

     for (int i = 0; i < GridView1.Rows.Count; i++)
                {
                    CheckBox cb = (CheckBox)GridView1.Rows[i].FindControl("CheckBox1");
                    if (cb.Checked)
                    {
                        int id = Convert.ToInt32(GridView1.DataKeys[i].Value);
                        BaseController.db.Delete("news", "_id", null, id);
                        Response.Redirect("NewsList.aspx");

                    }
                }

  • 相关阅读:
    手把手教你学Git
    服务器上Mysql的安装与配置
    python 5
    python 4
    python 3
    python 2
    区分命令行模式和Python交互模式
    CUDA编程模型之内存管理
    多目标优化算法-NSGA2
    C# ListView 如何添加列标头
  • 原文地址:https://www.cnblogs.com/G-XiaoHua/p/4832272.html
Copyright © 2011-2022 走看看