LinkButton1为全选按钮,点击此按钮则GridView1里的所以行上的CheckBox1变为选

2024年11月14日 17:49
有1个网友回答
网友(1):

e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#ccddff',this.style.fontWeight='Bold';");
//当鼠标离开的时候 将背景颜色还原的以前的颜色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
写在 GridView1_RowDataBound 函数里 就能变了 还能给字体加粗 不喜欢可以去掉