上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

2017年3月17日

删除Sql Server连接过的数据库

摘要: 1 @echo off 2 echo ---------------------------------------------------------------------------------- 3 echo -------------------------删除Sql Server连接过的数据库----------------------------- 4 echo -----... 阅读全文

posted @ 2017-03-17 11:15 木龙哥 阅读(332) 评论(0) 推荐(0) 编辑

2017年2月4日

js检查flash版本升级

摘要: 1 for (var i = 0, len = navigator.plugins.length; i < len; i++) { 2 var plugin = navigator.plugins[i]; 3 4 if (plugin.name == 'Shockwave Flash') { 5 if (... 阅读全文

posted @ 2017-02-04 17:26 木龙哥 阅读(702) 评论(0) 推荐(0) 编辑

2016年12月27日

修改IIS虚拟目录名称

摘要: 执行效果: 阅读全文

posted @ 2016-12-27 10:25 木龙哥 阅读(1876) 评论(0) 推荐(0) 编辑

2016年11月5日

算法

摘要: 1. 蔡勒公式:是一个计算星期的公式,随便给一个日期,就能用这个公式推算出是星期几。 阅读全文

posted @ 2016-11-05 17:44 木龙哥 阅读(174) 评论(0) 推荐(0) 编辑

2016年9月19日

jquery.validate 一些技巧

摘要: 1.Validator.element() Validates a single element, returns true if it is valid, false otherwise. https://jqueryvalidation.org/Validator.element/ 2.jQue 阅读全文

posted @ 2016-09-19 11:15 木龙哥 阅读(263) 评论(0) 推荐(0) 编辑

2016年9月18日

一些特殊css

摘要: (轮廓)是绘制于元素周围的一条线,位于边框边缘的外围,可起到突出元素的作用。 可以按顺序设置如下属性: outline-color outline-style outline-width iPhone 和 Android 的浏览器纵向 (Portrate mode) 和橫向 (Landscape m 阅读全文

posted @ 2016-09-18 12:55 木龙哥 阅读(193) 评论(0) 推荐(0) 编辑

2016年9月3日

powerShell

摘要: get-help *-* get-host power主机信息 $C=Get-Credential –Credential powershell;Enter-PSSession –ComputerName 192.168.1.200 –Credential $C "{0}.{1}" -f $env: 阅读全文

posted @ 2016-09-03 11:07 木龙哥 阅读(206) 评论(0) 推荐(0) 编辑

2016年7月25日

SQL重新排序

摘要: 1 DECLARE @id UNIQUEIDENTIFIER 2 3 DECLARE myCursor CURSOR 4 FOR 5 SELECT ProductId 6 FROM ( SELECT ProductId , 7 COUNT(1) cou 8 FROM ... 阅读全文

posted @ 2016-07-25 15:41 木龙哥 阅读(847) 评论(1) 推荐(0) 编辑

2016年7月8日

sql发邮件

摘要: 1 DROP PROCEDURE USP_CheckProductCodeRepeatAndSendMail 2 go 3 ---检查商家是否有重复的商品编号,如果有则发送给系统配置中接收的用户邮箱 4 CREATE PROCEDURE USP_CheckProductCodeRepeatAndSendMail 5 AS 6 BEGIN 7 IF EXIST... 阅读全文

posted @ 2016-07-08 11:35 木龙哥 阅读(284) 评论(0) 推荐(0) 编辑

2016年4月10日

asp.net 多站点共享StateServer Session

摘要: <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" cookieless="false" ></sessionState> 打开注册表,运行cmd/regedit,找到节点HKEY_LOCAL_ 阅读全文

posted @ 2016-04-10 17:05 木龙哥 阅读(548) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

导航