ASP.Net GrideView控件代码

光棒效果:
写在RowDataBound事件里面


  if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'");
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor");


        }


删除操作写在RowDeleting事件
获取ID
   int ID = Convert.ToInt32(Leave.DataKeys[e.RowIndex].Value.ToString());


记得在DataKeyNames属性里面写上要取的属性






编辑操作


进入编辑模式 Leave_RowEditing事件












 Leave.EditIndex = e.NewEditIndex;
    然后重新读取数据




退出编辑模式RowCancelingEdit事件


 Leave.EditIndex = -1;
读取数据




修改数据 RowUpdating事件


        int ID =Convert.ToInt32(Leave.DataKeys[e.RowIndex].Value.ToString());
        string Title = ((TextBox)(Leave.Rows[e.RowIndex].Cells[1].Controls[0])).Text.ToString();
        string Content = ((TextBox)(Leave.Rows[e.RowIndex].Cells[2].Controls[0])).Text.ToString();
        string User = ((TextBox)(Leave.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString();
      Leave.EditIndex = -1;
        //重新加载数据


分页PageIndexChanging事件


Leave.PageIndex = e.NewPageIndex;
重新加载数据
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值