摘要: 如果你的webserver收到这个信息:1.你是否真的需要这么长的url2.如果需要,你可能需要配置以下内容搞定<httpRuntime enableVersionHeader="false" maxUrlLength="20480" maxQueryStringLength="20480" requestPathInvalidCharacters="" /><!--给个合适的值--><system.webServer> <security> <requestF 阅读全文
posted @ 2012-08-31 11:00 调调儿 阅读(4180) 评论(0) 推荐(1) 编辑
摘要: function shareApi(target, img, content, url) { switch (target) { case 0: return "http://v.t.sina.com.cn/share/share.php?pic=" + img + "&title=" + content + "&url=" + url + "&rcontent="; case 1: return ... 阅读全文
posted @ 2012-02-09 18:33 调调儿 阅读(1472) 评论(0) 推荐(0) 编辑
摘要: chrome下<a href="javascript:void(0)">click</a>$("a").click(function(){ location.hash = "xxx"; }第一次点会跳锚点,第二次不会跳鸟。解决:$("a").click(function(){ location.hash = "xxx";window.location = window.location; } 阅读全文
posted @ 2012-02-06 19:01 调调儿 阅读(178) 评论(0) 推荐(0) 编辑
摘要: var str = "abc";var r = str[0];IE6下会得到undefined....囧。好记~ 阅读全文
posted @ 2012-01-19 16:54 调调儿 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 工具:memcached-1.2.6-win32-bin.zip MemCached服务端程序(for win)Memcached Manager win下的MemCached管理工具Memcached .NET client Library C#/.NET memcached 客户端dll安装配置MemCached服务端下载memcached-1.2.6-win32-bin.zip ,解压后得到memcached.exe,就是memcached的主程序了。比如我们放到MemCached服务器下的C:\Program Files\MemCacheD下下载安装Memcached Manager 阅读全文
posted @ 2011-02-18 15:57 调调儿 阅读(19565) 评论(19) 推荐(11) 编辑
摘要: 1、打开Word 2007,点击"发布"››"博客": 2、在打开的窗口中点击"管理帐户": 3、然后点击"新建": 4、博客提供商选择"其他",点击"下一步": 5、"API"选择"MetaWeblog","博客文章URL"输入:http://www.cnblogs.com/你的博客名称/services/metablogapi.aspx,并输入登录用户名和... 阅读全文
posted @ 2010-12-01 13:02 调调儿 阅读(251) 评论(1) 推荐(0) 编辑
摘要: 环境:Windows 2008 R2Exchange installation 必备:· 域控:The forest functional level must be at least Windows Server 2003 native.· Exchange服务器:确保在你的Windows 2008R2上安装以下组件(Make sure that you have insta... 阅读全文
posted @ 2010-05-08 16:03 调调儿 阅读(1101) 评论(1) 推荐(1) 编辑
摘要: IntroductionWhen it comes to programmatically accessing Microsoft's Active Directory a lot of people seem to have quite a difficult time tying all the pieces together to accomplish exactly what they w... 阅读全文
posted @ 2010-03-02 14:18 调调儿 阅读(1511) 评论(0) 推荐(0) 编辑
摘要: 转别人的,做了个小小改动,增加了一个重载,可以在把集合数据读入Excel之后再增加自定义的一些输出。[代码] 阅读全文
posted @ 2009-07-03 14:35 调调儿 阅读(519) 评论(4) 推荐(0) 编辑
摘要: 1. 一个CUP的寻址能力为8KB,那么他的地址总线宽度:分析:寻址能力8KB ,即1024*8=8192个内存单元。 8192 = 2的13次方。所以地址总线宽度为13知识点:微机存储器的内存单元是字节。1个内存单元是1个字节,即8位(Bit)一个CPU有N根地址线,则可以说这个CPU的地址总线宽度为N,这样的CPU的最大可寻找2的N次方个内存单元2.1KB的存储器有___存储单元?存储器的编号... 阅读全文
posted @ 2009-06-30 18:14 调调儿 阅读(455) 评论(0) 推荐(0) 编辑