zoukankan
html css js c++ java
获得插入记录标识号, 鼠标移到DataGrid的行更改颜色(转)
转自一滴水
http://www.cnblogs.com/yidishui
获得插入记录标识号
void
Page_Load(
object
sender, System.EventArgs e)
{
//
数据库连接字符串
string
ConnStr
=
System.Configuration.ConfigurationSettings.AppSettings[
"
ConnectionSqlServer
"
];
//
创建插入SQL语句及调用@@identity函数返回标识值
string
insert_query
=
"
insert into Categories (CategoryName,Description) values ('IT', 'Internet');
"
+
"
SELECT @@identity AS 'identity';
"
;
//
执行数据库操作
SqlCommand myCommand
=
new
SqlCommand(insert_query,
new
SqlConnection(ConnStr));
myCommand.Connection.Open();
myLabel.Text
=
myCommand.ExecuteScalar().ToString();
myCommand.Connection.Close();
}
鼠标移到DataGrid的行更改颜色
private
void
DataGrid1_ItemDataBound(
object
sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if
(e.Item.ItemType
==
ListItemType.Item
||
e.Item.ItemType
==
ListItemType.AlternatingItem)
{
//
添加自定义属性,当鼠标移过来时设置该行的背景色为"6699ff",并保存原背景色
e.Item.Attributes.Add(
"
onmouseover
"
,
"
StyleColor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'
"
);
//
添加自定义属性,当鼠标移走时还原该行的背景色
e.Item.Attributes.Add(
"
onmouseout
"
,
"
this.style.backgroundColor=StyleColor
"
);
}
}
blog site
http://xiexiaokui.cnblogs.com
查看全文
相关阅读:
sql查询语句
java网络编程实现两端聊天
Thread和Runnable的子类调用
接口和抽象类
ObjectOutputStream和ObjectInputStream的简单使用
HashMap遍历和使用
InputStreamReader读取文件出现乱码
Neural Network
Logistic Regression 逻辑回归
Linear Regression 线性回归
原文地址:https://www.cnblogs.com/xiexiaokui/p/573382.html
最新文章
springboot集成kafka
kafak配置说明
docker部署skywalking
centos7一步一步搭建docker jenkins 及自定义访问路径重点讲解
Spring Security Oauth2 认证(获取token/刷新token)流程(password模式)
jenkins构建maven聚合项目,发布jar包,可配置单独发布某个模块
navcat卸载
linux curl命令详解
Spring官方文档
Springboot-shiro-redis 登录认证
热门文章
限流组件sentinel使用
guava multiMap
http 301 302 307
java的(PO,VO,TO,BO,DAO,POJO)解释
idea httpclient or restclient 使用
fat.jar技术
linux查看端口的命令
session为什么需要持久化
卸载oracle 11g数据库
封装数据库查询方法
Copyright © 2011-2022 走看看