1. 程式人生 > >改變gridview選中行的背景色

改變gridview選中行的背景色

 protected void gridView_OnRowCreated(object sender, GridViewRowEventArgs e)

        {

            if (e.Row.RowType == DataControlRowType.DataRow)

            {

                e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor; this.style.backgroundColor='#CCCCCC'");

                //變數c用與儲存滑鼠移動在行上時,原來的背景色,然後設定為'#CCCCCC'

                e.Row.Attributes.Add("onmouseout", " this.style.backgroundColor=c");

                //當滑鼠離開時,還原背景色

            }

        }