码迷,mamicode.com
首页 > 其他好文 > 详细

Gridview中奇偶数行颜色设置

时间:2014-11-02 23:53:12      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   for   sp   on   bs   ad   line   

在gridview中的RowDataBound事件里面写

switch (e.Row.RowType)
{
case DataControlRowType.Header:
 e.Row.BackColor = Color.FromArgb(153, 0, 0);
 e.Row.ForeColor = Color.White;
 break;
case DataControlRowType.DataRow:
//建立奇数行与偶数行的onmouseover及onmouseout的颜色变换
if (Convert.ToInt16(ViewState["LineNo"]) == 0)
{
e.Row.BackColor = Color.FromArgb(255, 251, 214);
//e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=‘#FFFBD6‘;this.style.color=‘black‘");
//e.Row.Attributes.Add("onckick", "this.style.backgroundColor=‘#C0C0FF‘;this.style.color=‘#ffffff‘");

ViewState["LineNo"] = 1;
}
else
{
e.Row.BackColor = Color.White;
//e.Row.Attributes.Add("onckick", "this.style.backgroundColor=‘#FFFFFF‘;this.style.color=‘black‘");
//e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=‘#C0C0FF‘;this.style.color=‘#ffffff‘");

ViewState["LineNo"] = 0;
}

break;
}

Gridview中奇偶数行颜色设置

标签:style   color   ar   for   sp   on   bs   ad   line   

原文地址:http://www.cnblogs.com/ahao214/p/4070229.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!