2006年1月8日

GridView鼠标移动变色

摘要: 在GridView的protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onMouseOver", "SetNewColor(this);"); e.Row.Attributes.Add("onMouseOut", "SetOldColor(this);"); } } 阅读全文

posted @ 2006-01-08 11:21 goodvify 阅读(105) 评论(0) 推荐(0)

导航