GridView使用学习总结

所属分类: 网络编程 / ASP.NET 阅读数: 1589
收藏 0 赞 0 分享

由于Asp.Net视频比较旧,涉及到的数据绑定控件DataGrid在VS2012中已经没有了,取而代之的是GridView。开始觉得视频中的例子没法实现了,其实不然,DataGrid里面的功能GridView里一样都不少,只是形式变化了一下,仔细研究一下发现它们是换汤不换药啊。
(一)DataKeyName属性
(1)DataKeyNames一般都是用来对当前行做唯一标示的,所以一般为数据库的ID。
(2)GridView.DataKeys[e.RowIndex],e.RowIndex是获取事件对应的行,GridView.DataKeys[e.RowIndex]就是获取对应行的唯一标示也就是DataKeyNames所指定列的值。

(3)DataList和Repeater是没有的该属性的。

在代码中这样使用:(定义的该函数在下面都需要调用)

/// <summary> 
/// 实现数据绑定功能 
/// </summary> 
private void BindToDataGird()   
{ 
 SqlConnection con = DB.CreateCon(); 
 SqlDataAdapter sda = new SqlDataAdapter(); 
 sda.SelectCommand = new SqlCommand("select employeeID,FirstName,LastName,Title,BirthDate from employees ", con); 
 DataSet ds = new DataSet(); 
 sda.Fill(ds, "emp");   //将查询到的数据添加到DataSet中。 
 this.GridView1.DataKeyNames =new string[]{ "employeeID"}; //DataKeyNames的使用 
 this.GridView1.DataSource = ds.Tables["emp"];  
 this.DataBind(); 
} 

如何取值?

DataKey key = GridView1.DataKeys[e.RowIndex];//其中e为GridViewDelete(或者Edit)EventArgs e 
string empID = key[0].ToString(); 


(二)分页
由于GridView中封装了分页的功能。这里实现起来很容易。先需要设置属性:AllowPaging/PageSize/PageSetting。然后编写事件代码:

protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) 
{ 
 this.GridView1.PageIndex = e.NewPageIndex; 
 this.BindToDataGird(); 
} 


(三)排序
首先设置AllowSorting属性为true.事件代码:

protected void GridView1_Sorting(object sender, GridViewSortEventArgs e) 
{ 
 if (ViewState["order"] == null)  //使用ViewState设置双向排序。 
 { 
  ViewState["order"] = "ASC"; 
 } 
 else 
 { 
  if (ViewState["order"].ToString() == "ASC") 
  { 
   ViewState["order"] = "DESC"; 
  } 
  else 
  { 
   ViewState["order"] = "ASC"; 
  } 
 } 
 //数据绑定显示 
 SqlConnection con = DB.CreateCon(); 
 SqlDataAdapter sda = new SqlDataAdapter(); 
 sda.SelectCommand = new SqlCommand("select employeeID,FirstName,LastName,Title,BirthDate from employees ", con); 
 DataSet ds = new DataSet(); 
 sda.Fill(ds, "emp"); 
 ds.Tables["emp"].DefaultView.Sort = e.SortExpression + " " + ViewState["order"].ToString(); //设置排序 
 this.GridView1.DataSource = ds.Tables["emp"].DefaultView; //将表的默认视图作为数据源。 
 this.DataBind(); 
} 


(四)删除
这里需要注意一点:就是获取某一行的主键值。

protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) 
{ 
 DataKey key = GridView1.DataKeys[e.RowIndex]; 
 string empID = key[0].ToString(); 
 SqlConnection con = DB.CreateCon(); 
 SqlCommand cmd = new SqlCommand("delete from employees where employeeID= '"+empID+"'" , con); 
 con.Open(); 
 cmd.ExecuteNonQuery(); 
 this.BindToDataGird(); 
} 

(五)编辑(更新和取消)

protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e) 
{ 
 this.GridView1.EditIndex = e.NewEditIndex; 
 this.BindToDataGird(); 
} 
protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e) 
{ 
 this.GridView1.EditIndex = -1; //设置索引值为负取消编辑。 
 this.BindToDataGird(); 
} 
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e) 
{ 
 DataKey key = GridView1.DataKeys[e.RowIndex]; 
 string empID = key[0].ToString(); 
 string lastName=((TextBox)(GridView1.Rows [e.RowIndex ] .Cells [2].Controls [0])).Text ; //将GridView中某列中控件强制转换为TextBox,然后取出它的值。 
 Response.Write(empID +"&" + lastName ); //用于测试。 
 this.GridView1.EditIndex = -1; 
 this.BindToDataGird(); 
} 

附结果图:

小结:数据绑定控件:Reapter/DataList/GridView的功能成递增关系,都使用到了模板。所以掌握模板很重要。视频使用模板大都是使用控件,不是代码。总感觉这里需要学习的地方还有很多。需要做例子巩固使用。

更多精彩内容其他人还在看

解析如何利用一个ASP.NET Core应用来发布静态文件

本文主要通过一些简单的实例来体验一下如何在一个ASP.NET Core应用中发布静态文件。针对不同格式的静态文件请求的处理,ASP.NET Core为我们提供了三个中间件,它们将是本系列文章论述的重点。有需要的朋友可以看下
收藏 0 赞 0 分享

ASP.NET MVC下的四种验证编程方式[续篇]

ASP.NET MVC支持四种服务端验证的编程方式(“手工验证”、“标注ValidationAttribute特性”、“让数据类型实现IValidatableObject或者IDataErrorInfo”),那么在ASP.NET MVC框架内部是如何提供针对这四种不同编程方式的支
收藏 0 赞 0 分享

[Asp.Net MVC4]验证用户登录实现实例

这篇文章主要介绍了[Asp.Net MVC4]验证用户登录实现实例,这里整理了详细的代码,具有一定的参考价值,有需要的小伙伴可以参考下。
收藏 0 赞 0 分享

详解ASP.NET MVC的筛选器

ASP.NET MVC提供了四种类型的筛选器(AuthorizationFilter、ActionFilter、ResultFilter和ExceptionFilter),本篇文章对其进行一一介绍,需要的朋友来看下吧
收藏 0 赞 0 分享

.net decimal保留指定的小数位数(不四舍五入)

大家都知道decimal保留指定位数小数的时候,.NET自带的方法都是四舍五入的。那么如何让decimal保留指定位数小数的时候不四舍五入呢,下面通过这篇文中的示例代码来一起看看吧。
收藏 0 赞 0 分享

VS2015 搭建Asp.net core开发环境的方法

最近想在vs2015体验下.net core,折腾了两天终于把环境弄好了。下面这篇文章就给大家分享下我的搭建过程,有需要的朋友们可以参考学习,下面来一起看看吧。
收藏 0 赞 0 分享

详解ASP.NET Core应用中如何记录和查看日志

本篇文章主要介绍了ASP.NET Core应用中如何记录和查看日志,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
收藏 0 赞 0 分享

详解Asp.net Core 使用Redis存储Session

本篇文章主要介绍了Asp.net Core 使用Redis存储Session ,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧。
收藏 0 赞 0 分享

解析asp.net的分页控件

本文主要对AspNetPager.dll这个分页控件进行介绍,它主要用于asp.net webform网站。文章结尾附上实例下载,有需要的朋友可以看下
收藏 0 赞 0 分享

ASP.NET MVC后台参数验证的几种方式

本篇文章主要介绍了ASP.NET MVC后台参数验证的几种方式 ,具有一定的参考价值,有兴趣的可以了解一下。
收藏 0 赞 0 分享
查看更多