2012年5月16日 星期三

{C#}GridView 閃光棒效果、隔行不同色


GridView_RowDataBound事件:
if (e.Row.RowType == DataControlRowType.DataRow)
            {
                e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#f8eedf'");
                if (e.Row.RowIndex % 2 == 0)
                {
                    e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#ffffff'");
                }
                else
                {
                    e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#f4f4f4'");

                }
             }