ASP.NET2.0では、GridViewにマウスオーバー時の行色の強調表示効果(onmouseover、onmouseout)を追加しました!
著者:Eve Cole
更新時間:2009-06-30 17:02:38
protected void GridView1_RowDataBound(オブジェクト送信者、GridViewRowEventArgs e)
{
// 特定の条件を満たした実行を高亮にします
if (e.Row.RowType == DataControlRowType.DataRow)//現在の行が datarow タイプの行に属しているかどうかを判定します
{
intmoney = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "MONEY"));//取当前行の列值
if (お金 == 77)
e.Row.BackColor = Color.Red;
//string customer = (string)DataBinder.Eval(e.Row.DataItem, "CUSTOMER");
string customer = DataBinder.Eval(e.Row.DataItem, "CUSTOMER").ToString();
if (顧客 == "sdf")
e.Row.BackColor = Color.Red;
}
// ネズミ标滑过の高亮効果を追加
if (e.Row.RowType == DataControlRowType.DataRow)//現在の行が datarow タイプの行に属しているかどうかを判定します
{
//当ネズミ标放の上去った時候先保存当前行の背景色 并给附一颜色
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor=' yellow',this.style.fontWeight='';");
//当鼠标离开的時候将背景色还原的以前の色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
}
//单击行改变行背景颜色
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick","this.style.backgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
}