上一页 1 2 3 4 5 6 ··· 12 下一页

2020年6月15日

修复续期vpn证书无法使用的问题

摘要: 电脑使用公司VPN证书到期了,又申请了一个新的,但发现新的证书无法使用。 一直提示 No valid certificates available for authentication 后来公司管理证书的同事让我执行了一个命令,vpn就可以使用了。 certutil -repairstore -cs 阅读全文

posted @ 2020-06-15 11:04 木龙哥 阅读(4) 评论(0) 推荐(0)

2020年6月3日

sql server 系统视图

摘要: 查询某个表被哪些存储过程调用 select distinct object_name(id) from syscomments where id in (select id from sysobjects where type ='P') and text like '%表名%' --SQL SER 阅读全文

posted @ 2020-06-03 08:51 木龙哥 阅读(269) 评论(0) 推荐(0)

2020年4月17日

js代码段

摘要: 复制所有图片 (function() { var arr = []; var imgs = document.getElementsByTagName('img'); for (var i = 0, len = imgs.length; i < len; i++) { arr.push(imgs[i 阅读全文

posted @ 2020-04-17 11:58 木龙哥 阅读(174) 评论(0) 推荐(0)

2019年9月9日

IdentityServer4 EntityFramework

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2019-09-09 00:53 木龙哥 阅读(4) 评论(0) 推荐(0)

2019年6月8日

appcmd cmd 操作IIS

摘要: 创建子站点 appcmd.exe add app /site.name:"Default Web Site" /path:/TestSite /physicalPath:"C:\Applications" 打开C:\Windows\System32\inetsrv\config\applicatio 阅读全文

posted @ 2019-06-08 23:28 木龙哥 阅读(649) 评论(0) 推荐(0)

2019年5月21日

电脑知识

摘要: win2003 自动登录 运行> control userpasswords2 ;去掉勾选的必须输入复选框 dos修改ip:win2003> set address "本地连接" static 192.168.1.139 255.255.255.0 192.168.1.1 1 ; win7> net 阅读全文

posted @ 2019-05-21 10:47 木龙哥 阅读(247) 评论(0) 推荐(0)

2019年4月26日

sql server xml 功能

摘要: 搜索节点值是否存在 SELECT TOP 10 * FROM table WHERE XmlBody.exist('/Data/Field/Value[text()="123456"]')=1 阅读全文

posted @ 2019-04-26 13:58 木龙哥 阅读(309) 评论(0) 推荐(0)

sqlite 用法

摘要: 查看SQLite3帮助命令:sqlite> .help.databases List names and files of attached databases.dump ?TABLE? ... Dump the database in an SQL text format.echo ON|OFF 阅读全文

posted @ 2019-04-26 10:10 木龙哥 阅读(186) 评论(0) 推荐(0)

2019年4月11日

PowerDesigner使用

摘要: 生成SQL column不含有collate chinese_prc_ci_as 1.点击:工具栏-》database-》edit current DBMS 2.选择数据源(以SqlServer2005为例) Microsoft SQLServer2005\Script\Objects\Column 阅读全文

posted @ 2019-04-11 08:41 木龙哥 阅读(191) 评论(0) 推荐(0)

2019年3月13日

asp.net 开发注意的几点

摘要: 这主要是64位系统的问题,excel是32位的组件,所以在正常的系统组件服务里是看不到的 可以通过在运行里面输入 comexp.msc -32 来打开32位的组件服务,在里就能看到excel组件了 protected void Application_End(object sender, Event 阅读全文

posted @ 2019-03-13 14:25 木龙哥 阅读(294) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 12 下一页

导航