惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG

博客园 - 骚包猪

未在本地计算机上注册“microsoft.ACE.oledb.12.0”提供程序的解决办法 一份详尽的IPC$入侵资料 vlookup通俗解释 show interface counter 红旗linux下查看文件夹大小 Cisco 删除IOS后恢复、重灌ios x61在vista系统中玩wow魔兽世界 显示器驱动程序已停止响应 黑屏 终极解决方案 如何利用foobar2000将ape转aac格式.... ASP.NET执行SQL超时的解决方案 windows 更改IP地址 批处理文件 cmd命令 - 骚包猪 DropdownList绑定 - 骚包猪 - 博客园 .Net下调用SqlServer2k存储过程 c# ToString() 格式化字符串 - 骚包猪 ASCII 码表 一个检测文件 的small function c#时间格式化字符串详解 关于编码 建立一个基本SQl2000表 如何将txt文档插入sql2000数据库
关于datagrid鼠标悬停行数突出显示 - 骚包猪 - 博客园
骚包猪 · 2007-08-01 · via 博客园 - 骚包猪

private void DataGrid1_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
  {
   if(e.Item.ItemIndex!=-1)     //鼠标在DataGrid中移动时,选中的那一行显示颜色  
   {  
    e.Item.Attributes.Add("onmouseover","this.setAttribute('BKC',this.style.backgroundColor);this.style.backgroundColor='#99cfff'");  
    e.Item.Attributes.Add("onmouseout","this.style.backgroundColor=this.getAttribute('BKC');");  
   
   }  


  }