a:link{
}
你是说光棒效果吗?在行绑定事件中找到它,所在的行,然后判断是否数据行,接着剂就给行加鼠标移动到上方时的事件。如:
protected void gvfirst_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#ffccff'");
if (e.Row.RowState == DataControlRowState.Normal)
{
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#F7F6F3'");
}
else
{
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='White'");
}
}
}
我是个新手,希望能帮到你