会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zx132797
博客园
首页
新随笔
联系
订阅
管理
2024年6月25日
222
摘要: static IEnumerable<MethodInfo> GetExtensionMethods(Assembly assembly, Type extendedType) { var query = from type in assembly.GetTypes() where !type.Is
阅读全文
posted @ 2024-06-25 23:25 zx132797
阅读(24)
评论(0)
推荐(0)
2023年9月7日
微信发消息
该文被密码保护。
阅读全文
posted @ 2023-09-07 11:24 zx132797
阅读(1)
评论(0)
推荐(0)
2023年6月19日
sql server 查看备份记录
摘要: SELECT CONVERT(CHAR(100), SERVERPROPERTY('Servername')) AS Server, msdb.dbo.backupset.database_name, msdb.dbo.backupset.backup_start_date, msdb.dbo.ba
阅读全文
posted @ 2023-06-19 23:25 zx132797
阅读(238)
评论(0)
推荐(0)
2022年2月20日
C# 克隆
摘要: https://github.com/ReubenBond/DeepCopy
阅读全文
posted @ 2022-02-20 00:29 zx132797
阅读(27)
评论(0)
推荐(0)
2022年1月9日
C#时间戳 16进制相互转换
该文被密码保护。
阅读全文
posted @ 2022-01-09 23:09 zx132797
阅读(4)
评论(0)
推荐(0)
2017年7月28日
Sql SqlServer 脏读、 不可复读和幻读的理解
摘要: sql SqlServer 不可复读和幻读的定义,是根据自己的理解写出来的,不是真正的定义,哈哈! 一、定义 1.脏读 事务A向表中插入了一条数据,此时事务A还没有提交,此时查询语句能把这条数据查询出来,这种现现象称为脏读;脏读比较好理解 2.不可重复读 一个事务A第一次读取的结果之后, 另外一个事
阅读全文
posted @ 2017-07-28 15:47 zx132797
阅读(2720)
评论(0)
推荐(0)
2016年6月3日
ajax 操作全局监测,用户session失效
摘要: jQuery(function ($) { // 备份jquery的ajax方法 var _ajax = $.ajax; // 重写ajax方法,先判断登录在执行success函数 $.ajax = function (opt) { var _success = opt && opt.success || function (a, b) { }; var _opt = $.extend(op...
阅读全文
posted @ 2016-06-03 10:36 zx132797
阅读(374)
评论(0)
推荐(0)
2014年3月9日
卸载Windows服务
摘要: 1.创建(安装)windows服务:输入sccreatetest binPath= E:\Test\test.exe 回车。注意:“binPath=”后面必须加一个空格。 这时候就可以在计算机>>服务 中自己新建的 test 服务2.卸载服务 sc deletetest3.语法:sccreate|delete|config服务名[参数]
阅读全文
posted @ 2014-03-09 22:23 zx132797
阅读(173)
评论(0)
推荐(0)
2013年9月15日
IIS7、IIS6 web.config注册HttpModule
摘要: IIS6注册HttpModule IIS7注册HttpModule
阅读全文
posted @ 2013-09-15 17:27 zx132797
阅读(344)
评论(0)
推荐(0)
2013年3月4日
javascript 获取当前html 标签的位置
摘要: var tt = document.getElementById(id); var ttop = tt.offsetTop;//绝对位置 left 的距离 var thei = tt.clientHeight; var tleft = tt.offsetLeft;//绝对位置距离页面的 top的高 while (tt = tt.offsetParent) { ttop += tt.offsetTop; tleft += tt.offsetLeft; }var treebg=document.getElementById("test"); treebg.style.top =
阅读全文
posted @ 2013-03-04 16:31 zx132797
阅读(581)
评论(0)
推荐(0)
下一页
公告