luckylei66

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年8月23日

摘要: Error: msxml3.dll'80072f05'Thedateinthecertificateisinvalidorhasexpired Dim xmlhttpSet xmlhttp = Server.CreateObject("MSXML2.ServerXMLHTTP") x... 阅读全文
posted @ 2013-08-23 10:24 Leo.Wang 阅读(1087) 评论(0) 推荐(0) 编辑

2013年7月21日

摘要: 基本知识 Hash,一般翻译做“散列”,也有直接音译为“哈希”的,就是把任意长度的输入(又叫做预映射, pre-image),通过散列算法,变换成固定长度的输出,该输出就是散列值。这种转换是一种压缩映射,也就是,散列值的空间通常远小于输入的空间,不同的输入可能会散列成相同的输出,而不可能从散列... 阅读全文
posted @ 2013-07-21 15:03 Leo.Wang 阅读(1848) 评论(0) 推荐(1) 编辑

2013年7月16日

摘要: http://msdn.microsoft.com/zh-cn/library/System.Web.Services.Protocols.SoapExtension_methods(v=vs.80).aspx SoapExtension.ChainStream 方法: 当在派生类中被重写时,允许 ... 阅读全文
posted @ 2013-07-16 16:04 Leo.Wang 阅读(1602) 评论(0) 推荐(0) 编辑

2013年7月12日

摘要: 语法:ROW_NUMBER() OVER(PARTITION BY COLUMN ORDER BY COLUMN) SELECT ROW_NUMBER() OVER(ORDER BY CASE Col1 WHEN V1 THEN 1 WHEN V2 THEN 2 ELSE 3, Col2 ASC) 阅读全文
posted @ 2013-07-12 22:27 Leo.Wang 阅读(148) 评论(0) 推荐(0) 编辑

2013年4月27日

摘要: Link:https://github.com/douglascrockford/JSON-js function delEmpDependent(linkObj) { if (confirm('Are you sure you want to delete... 阅读全文
posted @ 2013-04-27 10:53 Leo.Wang 阅读(194) 评论(0) 推荐(0) 编辑

2013年4月24日

摘要: Link:https://github.com/douglascrockford/JSON-js function delEmpDependent(linkObj) { if (confirm('Are you sure you want to delete... 阅读全文
posted @ 2013-04-24 15:44 Leo.Wang 阅读(293) 评论(0) 推荐(0) 编辑

2013年4月19日

摘要: %windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i 阅读全文
posted @ 2013-04-19 13:41 Leo.Wang 阅读(123) 评论(0) 推荐(0) 编辑

2013年2月1日

摘要: 需要在iframe外层再添加一个div,并在div的样式上加上“-webkit-overflow-scrolling: touch;” $.modal(' 阅读全文
posted @ 2013-02-01 15:08 Leo.Wang 阅读(2444) 评论(0) 推荐(0) 编辑

2013年1月22日

摘要: DECLARE @products TABLE( City varchar(50), Product varchar(50), Price decimal)DECLARE @productPrice TABLE( City varchar(50), P1 decim... 阅读全文
posted @ 2013-01-22 11:55 Leo.Wang 阅读(339) 评论(0) 推荐(0) 编辑

2012年12月29日

摘要: using System;using System.Collections.Generic;using System.Security.Cryptography;using System.IO;using System.Text;namespace WB.OBE.OES.Common{ p... 阅读全文
posted @ 2012-12-29 11:36 Leo.Wang 阅读(760) 评论(0) 推荐(0) 编辑