[原创]在ASP.NET环境下完整的datagrid填充数据后界面动态显示填充方案
2007-12-15 09:31:33 来源:WEB开发网核心提示:sender.Items[i].Attributes.Add("onmouseOver","this.style.backgroundColor='"+mouseOverColor+"'");sender.Items[i].Attributes
sender.Items[i].Attributes.Add("onmouseOver","this.style.backgroundColor='"+mouseOverColor+"'");
sender.Items[i].Attributes.Add("onClick","this.style.backgroundColor='"+clickColor+"'");
}
else if(i % 2 == 1)
{
sender.Items[i].Attributes.Add("onMouseOut","this.style.backgroundColor='#"+sender.AlternatingItemStyle.BackColor.Name.Remove(0,2)+"';this.style.cursor='hand';");
sender.Items[i].Attributes.Add("onmouseOver","this.style.backgroundColor='"+mouseOverColor+"'");
sender.Items[i].Attributes.Add("onClick","this.style.backgroundColor='"+clickColor+"'");
}
}
}
else
{
for(int i=0;i<sender.Items.Count;i++)
{
if (i % 2 == 0)
{
sender.Items[i].Attributes.Add("onMouseOut","this.style.backgroundColor='#ffffff';this.style.cursor='hand';");
sender.Items[i].Attributes.Add("onmouseOver","this.style.backgroundColor='"+mouseOverColor+"'");
sender.Items[i].Attributes.Add("onClick","this.style.backgroundColor='"+clickColor+"'");
}
else if(i % 2 == 1)
{
sender.Items[i].Attributes.Add("onMouseOut","this.style.backgroundColor='"+sender.AlternatingItemStyle.BackColor.Name+"';this.style.cursor='hand';");
sender.Items[i].Attributes.Add("onmouseOver","this.style.backgroundColor='"+mouseOverColor+"'");
sender.Items[i].Attributes.Add("onClick","this.style.backgroundColor='"+clickColor+"'");
}
}
}
}
}
else
{
if(sender.AlternatingItemStyle.BackColor.Name=="0")
{
if (sender.ItemStyle.BackColor.Name.CompareTo("ff"+Convert.ToString(sender.ItemStyle.BackColor.Name.Remove(0,2)))==0)
{
for(int i=0;i<sender.Items.Count;i++)
{
sender.Items[i].Attributes.Add("onMouseOut","this.style.backgroundColor='#"+sender.ItemStyle.BackColor.Name.Remove(0,2)+"';this.style.cursor='hand';");
- ››ASP.NET及JS中的cookie基本用法
- ››ASP.NET获取MS SQL Server安装实例
- ››asp.net实现调用百度pai 在线翻译英文转中文
- ››ASP.NET页面选项进行提示判断
- ››Asp.net定时执行程序
- ››ASP.NET中利用DataList实现图片无缝滚动
- ››ASP.NET验证控件RequiredFieldValidator
- ››ASP.NET中使用System.Net.Mail发邮件
- ››ASP.NET中获取用户控件中控件的ID
- ››ASP.NET中FileBytes写成文件并存档
- ››asp获取毫秒数
- ››asp.net报“INSERT INTO 语句的语法错误解决
更多精彩
赞助商链接