ASP.NET数据绑定GridView控件使用技巧

发布时间:2022-04-16 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了ASP.NET数据绑定GridView控件使用技巧脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

不得不说GridView控件的功能确实很强大,一个简简单单的控件就可以把数据管理的很美。在这两天做的任务中碰到的一些GridView控件中遇到的问题进行总结;

①:在GridView控件中随意显示数据库中的信息:

GridView控件中有一个AutoGenerateColumns属性,它的作用就是控制GridView控件是否在运行的时候自动生成相关联的列,一般情况下把这个属性设置成为false。因为我们需要的是一个DIY的GridView控件。然后点击右上角的箭头,选择编辑列添加一个BounDField字段,选择数据DataField属性,在后面填上自己想要显示数据库中某一列的列名,在外观HeaderText属性中填写数据库中要显示的列名加以提示。然后点击确定控件中就会显示如下图所示:

 

然后在asp后台中添加链接数据库代码就ok了。关于链接数据库的代码博主在博文“【ASP】用GRIDVIEW控件连接SQL SERVER数据库”中已经做了详细介绍,本文就不多说了。

②:在GridView控件中实现编辑删除的功能:

点击GridView控件右上角的箭头,选择编辑列,添加CommandField字段,设置此字段行为属性ShowDeleteButton和ShowEdITButton为True。点击确定即可。结果如图下所示:

 

 但是此时的编辑删除不会有任何功能。因为GridView控件中有好多事件,实现编辑删除功能是要触发相应的事件才可以用。

首先介绍第一个事件——RowEditing。运行页面的时候点击编辑会出现“更改”和“取消”。此事件的作用就是点击编辑时可以显示更新和取消。 RowCancelingedit。运行页面的时候点击编辑会出现“更改”和“取消”,运行结果如下图所示:

 

双击此事件,在后台添加代码如下:

   PRotected void GridView1_RowEditing(object sender, GridViewEditEventargs e)

    {

      GridView1.EditIndex = e.NewEditIndex;

      this.shuaxin();

    }

第二个事件——RowCancelingEdit       事件RowCancelingEdit就是实现取消功能。双击此事件填写代码如下:

   protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)

   {

    GridView1.EditIndex = -1;

    this.shuaxin();

   }

第三个事件——RowUpdating实现更新功能,双击此事件添加代码如下:

    protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)

    {

      this.GridView1.EditIndex = e.RowIndex;

      string title = GridView1.DataKeys[e.RowIndex].Value.ToString();

      string cotent = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[1].Controls[0])).Text;

 

      string strsql = "update activities set cotent='" + cotent + "'

               where title='" + title + "'";

      SqlConnection con = new SqlConnection(configurationManager.

                ConnectionStrings["username"].ConnectionString);

      SqlCommand cmd = new SqlCommand(strsql, con);

      con.OPEn();

      cmd.ExecuteNonQuery();

      con.Close();

      GridView1.EditIndex = -1;

      this.shuaxin();

    }

第四个事件——RowDeleting。此事件实现删除功能,双击事件添加代码如下:

    protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)

    {

      string title = GridView1.DataKeys[e.RowIndex].Value.ToString();

 

      string delete = "delete activities where title='" + title + "'";

 

      SqlConnection con = new SqlConnection(ConfigurationManager.

                ConnectionStrings["username"].ConnectionString);

      SqlCommand cmd = new SqlCommand(delete, con);

      con.Open();

      cmd.ExecuteNonQuery();

      con.Close();

      GridView1.EditIndex = -1;

      this.shuaxin();  //自己写的链接数据库的方法;

    }

附:shuaxin();代码:

    private void shuaxin()

    {

      SqlConnection sqlcon = new SqlConnection(ConfigurationManager.

                 ConnectionStrings["username"].ConnectionString);

      sqlcon.Open();

      SqlDataAdapter da = new SqlDataAdapter(@"select * From activities", sqlcon);

      DataSet ds = new DataSet();

      da.Fill(ds);

      if (ds.Tables[0].Rows.Count > 0)

      {

        GridView1.DataSource = ds;

        GridView1.DataBind();

      }

      sqlcon.Close();

    }

注:GridView控件中有一个DataKeynames属性,设置datakeyname是要在点击行时获得该行数据的主键,

以保证删除更新时准确性;若没有设置此属性就会出现如下结果:

以上就是关于ASP.NET数据绑定GridView控件使用技巧,希望对大家的学习有所帮助。

脚本宝典总结

以上是脚本宝典为你收集整理的ASP.NET数据绑定GridView控件使用技巧全部内容,希望文章能够帮你解决ASP.NET数据绑定GridView控件使用技巧所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:ASP.NET