zoukankan      html  css  js  c++  java
  • 给DataGrid添加序号、导航键、鼠标划过事件、删除确认框(转)

    private void dg_DSC_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
      {
       DataTable dt=new DataTable();
       if(e.Item.ItemIndex!=-1)
       {
        int order=e.Item.ItemIndex+1;
        e.Item.Cells[0].Text=order.ToString();
        e.Item.Cells[9].Text="<a href=\"#\" onclick=\"OpenWin('CSD_New.aspx?number="+Server.UrlEncode(e.Item.Cells[1].Text)+"',600,350);\">修改</a>";
        e.Item.Cells[10].Text="<a href=\"#\" onclick=\"OpenWin('CSD_intercalate.aspx?number="+Server.UrlEncode(e.Item.Cells[1].Text)+"',720,600);\">商品信息</a>";
        e.Item.Cells[11].Text="<a href=\"#\" onclick=\"OpenWin('CSD_client.aspx?number="+Server.UrlEncode(e.Item.Cells[1].Text)+"',720,650);\">客户信息</a>";
        if(e.Item.Cells[6].Text=="已生效")
        {
         e.Item.Cells[12].Visible=false;
        }
        TableCell myTableCell;
        myTableCell=e.Item.Cells[12];
        LinkButton link=(LinkButton)myTableCell.Controls[0];
        link.Attributes.Add("onclick","return confirm('您真要删除此行吗?');");
       }
       foreach (DataGridItem Itemcolor in this.dg_DSC.Items)
       {
        Itemcolor.Attributes.Add("onmouseover","this.bgColor='Gainsboro'");
        Itemcolor.Attributes.Add("onmouseout","this.bgColor='white'");
       }
      }
  • 相关阅读:
    vue-cli项目打包出现空白页和路径错误问题
    Git操作手册
    Atom Editor 插件 atom-less 的使用方法
    Vue搭建
    使绝对定位高宽自适应
    原生JS表单序列化
    前端代码有关搜索引擎的代码
    网页局部打印
    万维网
    浅淡传统企业进入移动互联网的几种方式
  • 原文地址:https://www.cnblogs.com/xh831213/p/329457.html
Copyright © 2011-2022 走看看