GridView 点滴
2013-08-08 17:06 糯米粥 阅读(402) 评论(0) 编辑 收藏 举报绑定数据时。在后台给GridView添加事件
protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)
{
//当前行是数据行 排除头和尾
if (e.Row.RowType == DataControlRowType.DataRow)
{
//给第一列的每个单元格绑定单击事件
e.Row.Cells[0].Attributes.Add("onclick", "selectx(this)");//调用页面javascript
//e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#ffcc33'");
//e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;");
//鼠标移动到每项时颜色交替效果
e.Row.Attributes.Add(
"OnMouseOut"
,
"this.style.backgroundColor='White';this.style.color='#003399'"
);
e.Row.Attributes.Add(
"OnMouseOver"
,
"this.style.backgroundColor='#6699FF';this.style.color='#8C4510'"
);
//单击/双击 事件
e.Row.Attributes.Add(
"OnDblClick"
,
"DbClickEvent('"
+ e.Row.Cells[1].Text +
"')"
);
//设置悬浮鼠标指针形状为"小手"
e.Row.Attributes[
"style"
] =
"Cursor:hand"
;
e.Row.Attributes.Add("onmouseover", "if(this!=prev){c=this.style.backgroundColor;this.style.backgroundColor='#ffcc33'}");//当鼠标停留时更改背景色
e.Row.Attributes.Add("onmouseout", "if(this!=prev){this.style.backgroundColor=c}");//当鼠标移开时还原背景色
e.Row.Attributes["style"] = "Cursor:pointer";//设置悬浮鼠标指针形状为"小手"
e.Row.Attributes.Add("onmouseout", "if(this!=prev){this.style.backgroundColor=c}");//当鼠标移开时还原背景色
e.Row.Attributes["style"] = "Cursor:pointer";//设置悬浮鼠标指针形状为"小手"
}
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?