摘要: 定义application 的theme 定义style 动画slide_left_enter -->slide_left_exit -->slide_right_enter ... 阅读全文
posted @ 2015-12-29 17:27 QZB 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 自动生成10位IDDECLARE @num INTDECLARE @strID NVARCHAR(20)SET @strID = '00000000000000000' + cast(@num AS NVARCHAR(10))SET @strID = RIGHT(@strID, 10)Date的运算... 阅读全文
posted @ 2015-12-29 11:40 QZB 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 环境:Windows server 2012 rmsql server 2012excel 数据导入数据表INSERT INTO [dbo].[AdminUser] SELECT [AdminUserID] ,[NameZH] ,... 阅读全文
posted @ 2015-12-16 14:02 QZB 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 1. 完整恢复模式下的数据库备份 1 USE master; 2 ALTER DATABASE AdventureWorks2012 SET RECOVERY FULL; 3 GO 4 -- Back up the AdventureWorks2012 database to new media s... 阅读全文
posted @ 2015-12-10 10:42 QZB 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 1 _ 2 _ 3 _ 4 Public Function Test_SyncLock() As String 5 Dim threads(10) As Threading.Thread 6 For i As Integer = 0 ... 阅读全文
posted @ 2015-11-30 13:51 QZB 阅读(548) 评论(0) 推荐(0) 编辑
摘要: javascript 时间格式 1 Date.prototype.format = function (format) { 2 var o = { 3 "M+": this.getMonth() + 1, //month 4 ... 阅读全文
posted @ 2015-09-01 14:17 QZB 阅读(536) 评论(0) 推荐(0) 编辑
摘要: jquery-2.1.1.min.js1 /*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */2 !function(a,b){"object"==typeof module&&"obje... 阅读全文
posted @ 2015-08-20 15:26 QZB 阅读(930) 评论(0) 推荐(0) 编辑
摘要: xls 导入数据库 1 --删除现有数据 2 DELETE FROM dbo.PhoneList 3 4 --插入数据 5 insert into dbo.PhoneList 6 --读取xls数据 7 select RIGHT('0000000000'+CONVERT(VARCHAR,... 阅读全文
posted @ 2015-08-07 10:19 QZB 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 必须权限 Calendar Event Url private static String calanderURL = ""; private static String calanderEventURL = ""; private static String calanderRemi... 阅读全文
posted @ 2015-07-21 14:21 QZB 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 来源http://www.imooc.com/learn/374pageswitch.js(function ($) { var defaults = { 'container': '#container', //容器 'sections': '.section',... 阅读全文
posted @ 2015-07-03 15:26 QZB 阅读(636) 评论(0) 推荐(0) 编辑