摘要:
Error: msxml3.dll'80072f05'Thedateinthecertificateisinvalidorhasexpired Dim xmlhttpSet xmlhttp = Server.CreateObject("MSXML2.ServerXMLHTTP") x... 阅读全文
摘要:
基本知识 Hash,一般翻译做“散列”,也有直接音译为“哈希”的,就是把任意长度的输入(又叫做预映射, pre-image),通过散列算法,变换成固定长度的输出,该输出就是散列值。这种转换是一种压缩映射,也就是,散列值的空间通常远小于输入的空间,不同的输入可能会散列成相同的输出,而不可能从散列... 阅读全文
摘要:
http://msdn.microsoft.com/zh-cn/library/System.Web.Services.Protocols.SoapExtension_methods(v=vs.80).aspx SoapExtension.ChainStream 方法: 当在派生类中被重写时,允许 ... 阅读全文
摘要:
语法: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) 阅读全文
摘要:
Link:https://github.com/douglascrockford/JSON-js function delEmpDependent(linkObj) { if (confirm('Are you sure you want to delete... 阅读全文
摘要:
Link:https://github.com/douglascrockford/JSON-js function delEmpDependent(linkObj) { if (confirm('Are you sure you want to delete... 阅读全文
摘要:
%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i 阅读全文
摘要:
需要在iframe外层再添加一个div,并在div的样式上加上“-webkit-overflow-scrolling: touch;” $.modal(' 阅读全文
摘要:
DECLARE @products TABLE( City varchar(50), Product varchar(50), Price decimal)DECLARE @productPrice TABLE( City varchar(50), P1 decim... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Security.Cryptography;using System.IO;using System.Text;namespace WB.OBE.OES.Common{ p... 阅读全文