ASP.NET2.0下为GridView添加鼠标滑过(onmouseover、onmouseout)的行颜色高亮效果!
摘要:
protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse){//将满足特定条件的行标为高亮if(e.Row.RowType==DataControlRowType.DataRow)//判定当前的行是否属于datarow类型的行{intmoney=Convert.ToInt32(DataBinder.Eval(e.R... 阅读全文
posted @ 2006-07-18 23:46 xh3 阅读(953) 评论(0) 推荐(0) 编辑