ASP.NET2.0에서 마우스 오버(onmouseover, onmouseout)의 행 색상 강조 효과를 GridView에 추가하세요!
저자:Eve Cole
업데이트 시간:2009-06-30 17:02:38
protected void GridView1_RowDataBound(개체 전송자, GridViewRowEventArgs e)
{
//특별히 결정된 이동 수단
if (e.Row.RowType == DataControlRowType.DataRow)//결정적인 이동 이전에 datarow를 실행하는 방식
{
int Money = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "MONEY"));//取当前行的列值
if (돈 == 77)
e.Row.BackColor = Color.Red;
//string customer = (string)DataBinder.Eval(e.Row.DataItem, "CUSTOMER");
string 고객 = DataBinder.Eval(e.Row.DataItem, "CUSTOMER").ToString();
if (고객 == "sdf")
e.Row.BackColor = Color.Red;
}
//加入鼠标滑过的高亮效果
if (e.Row.RowType == DataControlRowType.DataRow)//결정적인 이동 이전에 datarow를 실행하는 방식
{
//当鼠标放上去的时候 先保存当前行的背景颜color 并给附一颜color
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.BackgroundColor;this.style.BackgroundColor='yellow',this.style.fontWeight='';");
//当鼠标离开的时候 将背景颜color还원래 以前的颜color
e.Row.Attributes.Add("onmouseout", "this.style.BackgroundColor=currentcolor,this.style.fontWeight='';");
}
//单击行改变行背景颜color
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick","this.style.BackgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
}