程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ASP.NET2.0下為GridView添加鼠標滑過(onmouseover、onmouseout)的行顏色高亮效果!

ASP.NET2.0下為GridView添加鼠標滑過(onmouseover、onmouseout)的行顏色高亮效果!

編輯:.NET實例教程

protected void GridView1_RowDataBound(object sender, GridVIEwRowEventArgs e)
    {
        //將滿足特定條件的行標為高亮
        if (e.Row.RowType == DataControlRowType.DataRow)//判定當前的行是否屬於datarow類型的行
        {
            int money = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "MONEY"));//取當前行的列值
            if (money == 77)
                e.Row.BackColor = Color.Red;
            //string customer = (string)DataBinder.Eval(e.Row.DataItem, "CUSTOMER");
            string customer = DataBinder.Eval(e.Row.DataItem, "CUSTOMER").ToString();
            if (customer == "sdf")
                e.Row.BackColor = Color.Red;
        }
        //加入鼠標滑過的高亮效果
        if (e.Row.RowType == DataControlRowType.DataRow)//判定當前的行是否屬於datarow類型的行
        {
            //當鼠標放上去的時候 先保存當前行的背景顏色 並給附一顏色
            e.Row.Attributes.Add("onmouSEOver", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='yellow',this.style.fontWeight='';");
            //當鼠標離開的時候 將背景顏色還原的以前的顏色
            e.Row.Attributes.Add("onmouSEOut", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");  
        }
        //單擊行改變行背景顏色
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
           e.Row.Attributes.Add("onclick","this.style.backgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
        }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved