2008年1月24日
摘要: protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { //如果是绑定数据行 if (e.Row.RowType == DataControlRowType.DataRow) { ////鼠标经过时,行背景色变 ... 阅读全文
posted @ 2008-01-24 22:43 自己 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 解决方法:数据绑定后过滤每一行即可 for (int i = 0; i <= GridView1.Rows.Count - 1; i++) { DataRowView mydrv; string gIntro; if (GridView1.PageIndex == 0) { ... 阅读全文
posted @ 2008-01-24 22:39 自己 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2008-01-24 21:57 自己 阅读(100) 评论(0) 推荐(0) 编辑