ASP.net GridView控件(编辑取消功能)

一.说明

部分代码的运用放在以往的教程中,本部分只讲解编辑取消功能

二.前端代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebGv2.aspx.cs" Inherits="WebApplication6.WebGv2" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <%--这3给属性为上一节内容
				AllowPaging:True     数据进行分页
                PageSize:3           每页分'3'行
                OnPageIndexChanging: 页码改变事件

                -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
				当节内容
                DataKeyNames:id      主键(数据表的列名,按钮事件需要)
				OnRowCancelingEdit:	取消修改事件
				OnRowEditing:		修改事件
                --%>
            <asp:GridView ID="GridView1" runat="server" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="3" DataKeyNames="id" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowEditing="GridView1_RowEditing">
                <Columns>
                    <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
                </Columns>
            </asp:GridView>
        </div>
    </form>
</body>
</html>

三.后端代码

我们需要添加几个需要的按钮:
在这里插入图片描述
黄色是取消,红色是删除,绿色是编辑,我们分别将他们设置为True:
在这里插入图片描述
然后我们就会得到如此的界面:
在这里插入图片描述
只有按钮还不算完成,我们需要添加对应的事件,后端代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication6
{
    public partial class WebGv2 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            //打开页面开始加载,后续的提交中不参与加载
            if (!IsPostBack) {
                bind();
            }
        }

        //查询数据的方法
        private void bind()
        {
            string sql = "select * from student order by id";
            //设置表格的数据源为查询的数据表
            GridView1.DataSource= MyDBSql.excutSql(sql);
            //绑定事件
            GridView1.DataBind();
        }


        /// <summary>
        /// 页码改变事件
        /// </summary>
        /// <param name="sender">事件源</param>
        /// <param name="e">对象 事件</param>
        protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            //设置数据表格的页索引为当前事件 单击的页的编码
            GridView1.PageIndex = e.NewPageIndex;

            //重新调用查询数据方法
            bind();

        }

        /// <summary>
        /// 编辑按钮的单击事件
        /// </summary>
        /// <param name="sender">GridView</param>
        /// <param name="e">编辑事件</param>
        protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
        {
            //设置数据表格的编辑索引
            //-*-*-*-*-*-*-*-*-*-*-*-*-*
            //注意这里使用的是EditIndex 编辑索引,并不是PageIndex 页码索引,用错则会出现BUG
            GridView1.EditIndex = e.NewEditIndex;
            bind();
        }

        /// <summary>
        /// 取消编辑事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
        {
            //-1 表示编辑取消;
            GridView1.EditIndex = -1;
            bind();
        }
    }
}

四.效果

  • 当我们点击编辑按钮时,则显示:
    在这里插入图片描述
    此时的name,sex都是可编辑状态

  • 当我们点击取消时,一切都未改变:
    在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值