C#可以删除,修改的DataGrid例子

前台html代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="BigSchool._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
         <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="Both" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" OnRowCancelingEdit="GridView1_RowCancelingEdit">
              <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
              <Columns>
                  <asp:BoundField DataField="user_id" HeaderText="用户ID" ReadOnly="True" />
                  <asp:BoundField DataField="user_name" HeaderText="用户姓名" />
                  <asp:BoundField DataField="sms1_no" HeaderText="性别" />
                  <asp:BoundField DataField="user_no" HeaderText="家庭住址" />
                  <asp:CommandField HeaderText="选择" ShowSelectButton="True" />
                  <asp:CommandField HeaderText="编辑" ShowEditButton="True" />
                  <asp:CommandField HeaderText="删除" ShowDeleteButton="True" />
              </Columns>
              <RowStyle ForeColor="#000066" />
              <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
              <PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
              <HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" />
         </asp:GridView>
    </form>
</body>
</html>

 

--------------------------------------------------------------------------------------------------

 

后台cs代码

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Configuration;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace BigSchool
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                bind();
            }
        }

        protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
        {
            GridView1.EditIndex = e.NewEditIndex;
            bind();
        }

        //删除
        protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            //自己添加
        }

        //更新
        protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
            string sqlstr = "update tbiz_systemuser set user_name='"
                + ((TextBox)(GridView1.Rows[e.RowIndex].Cells[1].Controls[0])).Text.ToString().Trim() + "',sms1_no='"
                + ((TextBox)(GridView1.Rows[e.RowIndex].Cells[2].Controls[0])).Text.ToString().Trim() + "',user_no='"
                + ((TextBox)(GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString().Trim() + "' where user_id='"
                + GridView1.DataKeys[e.RowIndex].Value.ToString() + "'";
            SQLServerDAL.DBUtil.ExecuteNonQuery(sqlstr);
            GridView1.EditIndex = -1;
            bind();
        }

        //取消
        protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
        {
            GridView1.EditIndex = -1;
            bind();
        }

        //绑定
        public void bind()
        {
            string sqlstr = "select user_id,user_name,sms1_no,user_no from tbiz_systemuser where school_id=10040 and Dept_ID=19537 and state=0 order by user_id";
            DataTable dt = SQLServerDAL.DBUtil.GetDataTableBySql(sqlstr);
            GridView1.DataSource = dt.DefaultView;
            GridView1.DataKeyNames = new string[] { "user_id" };//主键
            GridView1.DataBind();
        }
    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值