摘要:
方法一: 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 @ 2012-08-17 15:15
程序之魂
阅读(1110)
评论(0)
推荐(0)