在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#网络编程 → asp Gridview控件实现增删改查(含数据库脚本)

asp Gridview控件实现增删改查(含数据库脚本)

C#网络编程

下载此实例
  • 开发语言:C#
  • 实例大小:0.43M
  • 下载次数:87
  • 浏览次数:2781
  • 发布时间:2018-11-18
  • 实例类别:C#网络编程
  • 发 布 人:chenjiamin
  • 文件格式:.zip
  • 所需积分:2
 相关标签: GridView asp 控件 增删改

实例介绍

【实例简介】

【实例截图】

from clipboard


from clipboard

【核心代码】

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using government_web.db;
namespace government_web.user
{
    public partial class user : System.Web.UI.Page
    {
        public SqlServerDB sqlServerDB = null;
        protected void Page_Load(object sender, EventArgs e)
        {

          
           

        }
        /// <summary>
        /// 删除操作
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void GridView_user_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            int id = int.Parse(GridView_user.Rows[e.RowIndex].Cells[0].Text.ToString());
            SqlDataSource_user.DeleteCommand = "delete from [users] where uid="   id;
            SqlDataSource_user.Delete();
            bind();
        }
        /// <summary>
        /// 搜索
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void user_search_Click(object sender, EventArgs e)
        {
            bind();
        }

        /// <summary>
        /// 点击分页
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void GridView_user_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            bind();
        }

        public void bind() {
            //查询字符串
            string sql = "select * from [users] where [username] like '%"   TextBox_username.Text   "%' "
                  " and [email] like '%"   TextBox_email.Text   "%' and [name] like '%"   TextBox_name.Text   "%'"
                  " and [phone] like '%"   TextBox_phone.Text   "%'";
            //设置SqlDataSource 执行sql语句
            SqlDataSource_user.SelectCommand = sql;
            //设置GridView中DataSourceID
            GridView_user.DataSourceID = SqlDataSource_user.ID;
            //绑定GridView数据
            GridView_user.DataBind();
        }

        protected void Button_user_search_Click(object sender, EventArgs e)
        {
            bind();
        }

        protected void GridView_user_SelectedIndexChanging(object sender, GridViewSelectEventArgs e)
        {
            int index = e.NewSelectedIndex;
            
        }
        /// <summary>
        /// 数据绑定
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void GridView_user_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            TextBox TextBox_row_username = (TextBox)e.Row.FindControl("TextBox_row_username") as TextBox;
            //e.Row.RowType 
            if (e.Row.RowType == DataControlRowType.DataRow )
            {
                //用户名
                if(TextBox_row_username!=null){
                    TextBox_row_username.Text = ((HiddenField)e.Row.FindControl("HiddenField_row_username")).Value;
                }
                //姓名
                TextBox TextBox_row_name = (TextBox)e.Row.FindControl("TextBox_row_name") as TextBox;
                if (TextBox_row_name != null)
                {
                    TextBox_row_name.Text = ((HiddenField)e.Row.FindControl("HiddenField_row_name")).Value;

                }
                //邮箱
                TextBox TextBox_row_email = (TextBox)e.Row.FindControl("TextBox_row_email") as TextBox;
                if (TextBox_row_email != null)
                {
                    TextBox_row_email.Text = ((HiddenField)e.Row.FindControl("HiddenField_row_email")).Value;

                }
                //电话
                TextBox TextBox_row_phone = (TextBox)e.Row.FindControl("TextBox_row_phone") as TextBox;
                if ( TextBox_row_phone != null)
                {
                    TextBox_row_phone.Text = ((HiddenField)e.Row.FindControl("HiddenField_row_phone")).Value;

                }
            }
            
            

            

            
            
          // TextBox_row_username.Text = "123";
        }

        protected void GridView_user_RowEditing(object sender, GridViewEditEventArgs e)
        {
            //Row.FindControl("TextBox_row_username");
            GridView_user.EditIndex = e.NewEditIndex;
        }

        protected void GridView_user_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
           
            //用户名
            TextBox TextBox_row_username= GridView_user.Rows[e.RowIndex].FindControl("TextBox_row_username") as TextBox;
            //姓名
            TextBox TextBox_row_name    = GridView_user.Rows[e.RowIndex].FindControl("TextBox_row_name") as TextBox;
            //邮箱
            TextBox TextBox_row_email   = GridView_user.Rows[e.RowIndex].FindControl("TextBox_row_email") as TextBox;
            //电话
            TextBox TextBox_row_phone   = GridView_user.Rows[e.RowIndex].FindControl("TextBox_row_phone") as TextBox;
            int id = int.Parse(GridView_user.Rows[e.RowIndex].Cells[0].Text);
            string sql = "";
            if (TextBox_row_username!=null && TextBox_row_username.Text!="")
            {
                sql  = " username='"   TextBox_row_username.Text   "',";
            }
            if (TextBox_row_name != null && TextBox_row_name.Text != "")
            {
                sql  = " name='"   TextBox_row_name.Text   "',";
            }
            if (TextBox_row_email != null && TextBox_row_email.Text != "")
            {
                sql  = " email='"   TextBox_row_email.Text   "',";
            }
            if (TextBox_row_phone != null && TextBox_row_username.Text != "")
            {
                sql  = " phone='"   TextBox_row_phone.Text   "',";
            }
            if(sql!=""){
                sql = sql.Remove(sql.LastIndexOf(","), 1);
                sql = "update users set "   sql " where uid=" id;
                SqlDataSource_user.UpdateCommand = sql;
                SqlDataSource_user.Update();
                bind();
            }
        }
    }
}

实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警