标题:asp.net中datagrid行改变颜色问题?
只看楼主
wty
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-11-8
 问题点数:0 回复次数:3 
asp.net中datagrid行改变颜色问题?
书上介绍在datagrid的dataitembound事件中加入代码就可以实现鼠标在datagrid行时移动时改变行的背景色,但我的不行呀
If (e.Item.ItemType = ListItemType.Item And e.Item.ItemType = ListItemType.AlternatingItem) Then
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='#6699ff'")
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#EFF3F7'")
End If

搜索更多相关主题的帖子: datagrid行 鼠标 Item asp 颜色 
2005-11-08 12:44
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
得分:0 
为啥不用样式 this.className=sdsa
2005-11-08 14:44
wty
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-11-8
得分:0 
怎么用,也是写在dataitembound事件中吗?
2005-11-08 17:47
yj3385
Rank: 1
等 级:新手上路
帖 子:29
专家分:0
注 册:2004-12-1
得分:0 

我试了,这个可以的,你是不是没有加上事件呀
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.oleDbCommand1 = new System.Data.OleDb.OleDbCommand();
this.DataGrid1.ItemDataBound += new System.Web.UI.WebControls.DataGridItemEventHandler(this.DataGrid1_ItemDataBound);
this.Button2.Click += new System.EventHandler(this.Button2_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item)
{
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#9CCBF7'");
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='WhiteSmoke'");
}
else if (e.Item.ItemType == ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#9CCBF7'");
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='White'");
}
}


2005-11-11 14:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-33078-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.292905 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved