我用GridView做光棒效果为什么在GridView1_RowCommand这个时间里面我在添加鼠标移入效果时Row报错啊
发布网友
发布时间:2022-12-03 10:16
我来回答
共1个回答
热心网友
时间:2023-11-17 20:41
用e.Row 不要写在RowCommand那个事件..
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff' ");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor");
}