zoukankan      html  css  js  c++  java
  • 给DataGrid的删除按钮添加"删除确认"对话框

    private void DataGrid1_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)

             {

                  foreach(TableCell tc in e.Item.Cells)//枚举该行中的每个单元格

                  {

                       if(tc.Controls.Count>0)//检查每个单元格中的控件数

                       {

                           foreach(Control con in tc.Controls)//得到每个控件

                           {

                                if(con.ToString()=="System.Web.UI.WebControls.DataGridLinkButton")//检查每个控件,看是否是DataGridLinkButton

                                //奇怪的是在System.Web.UI.WebControls中没有这个类,我是通过Response.Write(con.ToString())发现的

                                {

                                     LinkButton lb=(LinkButton)con;

                                     if(lb.CommandName=="Delete")

                                     {

                                         lb.Attributes.Add("onclick", "return confirm('您真的要删除此行吗?')");

                                     }

                                }

                           }

     

                       }

                  }

                 

             }

  • 相关阅读:
    RSA算法
    Windows-caffe配置
    python 下 excel,csv 文件的读写
    python 网络通讯 服务器端代码demo,能够同时处理多个客户端的连接请求
    python 下串口数据的读取,解析,和保存-
    XML字符串和JAVA对象之间的转化
    MySQL的join on和 where 的执行顺序和区别,以及各种连接说明
    全国各行政区行政编码
    计数器+打卡+习惯+目标APP推荐
    安卓计数器类APP推荐
  • 原文地址:https://www.cnblogs.com/dudu/p/1168.html
Copyright © 2011-2022 走看看