Gridview后台添加滑动效果
来源:未知 责任编辑:责任编辑 发表时间:2013-12-18 11:35 点击:次
GridView1_RowDataBound事件在对行进行了数据绑定后激发。
e.Row.RowType判断行的类型。
DataControlRowType选择行的类型
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
switch (e.Row.RowType)
{
case DataControlRowType.Header:
break;
case DataControlRowType.DataRow:
if (e.Row.RowIndex > -1)
{
// 奇数行
if (e.Row.RowIndex % 2 == 0)
{
e.Row.Attributes.Add
("onmouseover", "this.style.backgroundColor='#84AAEF';
this.style.color='white'");
e.Row.Attributes.Add
("onmouseout", "this.style.backgroundColor='#F7F6F3';
this.style.color='#333333'");
}
e.Row.RowType判断行的类型。
DataControlRowType选择行的类型
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
switch (e.Row.RowType)
{
case DataControlRowType.Header:
break;
case DataControlRowType.DataRow:
if (e.Row.RowIndex > -1)
{
// 奇数行
if (e.Row.RowIndex % 2 == 0)
{
e.Row.Attributes.Add
("onmouseover", "this.style.backgroundColor='#84AAEF';
this.style.color='white'");
e.Row.Attributes.Add
("onmouseout", "this.style.backgroundColor='#F7F6F3';
this.style.color='#333333'");
}
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>