02 2015 档案

摘要://生成cookiefunction addCookie(sName, sValue, day) { var expireDate = new Date(); expireDate.setDate(expireDate.getDate() + day); //设置失效时间 ... 阅读全文
posted @ 2015-02-13 16:09 b̶i̶n̶g̶.̶ 阅读(141) 评论(0) 推荐(0) 编辑
摘要://算法1//Js代码 function uuid() { var s = []; var hexDigits = "0123456789abcdef"; for (var i = 0; i < 36; i++) { s[i] = hexDigits.s... 阅读全文
posted @ 2015-02-13 15:36 b̶i̶n̶g̶.̶ 阅读(380) 评论(0) 推荐(0) 编辑
摘要:PV:PV 是Page Views的缩写,即页面浏览量,用户每一次对网站中的每个网页访问均被记录一次。注意,访客每刷新一次页面,pv就增加一次。UV:UV是Unique Visitor的缩写,即独立访客数。指访问某个站点的不同IP地址的人数。在同一天的00:00-24:00内,uv只记录第一次进入网... 阅读全文
posted @ 2015-02-13 15:31 b̶i̶n̶g̶.̶ 阅读(938) 评论(0) 推荐(0) 编辑
摘要:http://bootstrap.kinghack.com/getting-started.html 阅读全文
posted @ 2015-02-12 10:08 b̶i̶n̶g̶.̶ 阅读(151) 评论(0) 推荐(0) 编辑
摘要:原文地址:http://www.cnblogs.com/TankXiao/archive/2012/02/06/2337728.html 阅读全文
posted @ 2015-02-12 09:44 b̶i̶n̶g̶.̶ 阅读(124) 评论(0) 推荐(0) 编辑
摘要:#region 排序获取集合 static List GetPagerWithGroup(string connectionString, string databaseName, string collectionName, IMongoQuery param, GroupByBuild... 阅读全文
posted @ 2015-02-06 14:20 b̶i̶n̶g̶.̶ 阅读(580) 评论(1) 推荐(0) 编辑
摘要:using System;using System.IO;using System.Security.Cryptography;namespace RijndaelManaged_Example{ class RijndaelExample { public static ... 阅读全文
posted @ 2015-02-04 11:29 b̶i̶n̶g̶.̶ 阅读(757) 评论(0) 推荐(0) 编辑
摘要:http://echarts.baidu.com/doc/example.html 阅读全文
posted @ 2015-02-03 17:34 b̶i̶n̶g̶.̶ 阅读(108) 评论(0) 推荐(0) 编辑
摘要:Query.All("name", "a", "b");//通过多个元素来匹配数组 Query.In("name", "a", "b");//包括指定的所有值,可以指定不同类型的条件和值 Query.And(Query.EQ("na... 阅读全文
posted @ 2015-02-03 15:46 b̶i̶n̶g̶.̶ 阅读(333) 评论(0) 推荐(0) 编辑
摘要:C# var icon = System.Drawing.Icon.ExtractAssociatedIcon(@"filepath"); var m = new MemoryStream(); icon.Save(m); ... 阅读全文
posted @ 2015-02-02 15:01 b̶i̶n̶g̶.̶ 阅读(814) 评论(0) 推荐(0) 编辑