摘要:
如果你的webserver收到这个信息:1.你是否真的需要这么长的url2.如果需要,你可能需要配置以下内容搞定<httpRuntime enableVersionHeader="false" maxUrlLength="20480" maxQueryStringLength="20480" requestPathInvalidCharacters="" /><!--给个合适的值--><system.webServer> <security> <requestF 阅读全文
摘要:
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 ... 阅读全文
摘要:
chrome下<a href="javascript:void(0)">click</a>$("a").click(function(){ location.hash = "xxx"; }第一次点会跳锚点,第二次不会跳鸟。解决:$("a").click(function(){ location.hash = "xxx";window.location = window.location; } 阅读全文
摘要:
var str = "abc";var r = str[0];IE6下会得到undefined....囧。好记~ 阅读全文
摘要:
工具: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 阅读全文
摘要:
1、打开Word 2007,点击"发布"››"博客": 2、在打开的窗口中点击"管理帐户": 3、然后点击"新建": 4、博客提供商选择"其他",点击"下一步": 5、"API"选择"MetaWeblog","博客文章URL"输入:http://www.cnblogs.com/你的博客名称/services/metablogapi.aspx,并输入登录用户名和... 阅读全文
摘要:
环境: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... 阅读全文
摘要:
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... 阅读全文
摘要:
转别人的,做了个小小改动,增加了一个重载,可以在把集合数据读入Excel之后再增加自定义的一些输出。[代码] 阅读全文
摘要:
1. 一个CUP的寻址能力为8KB,那么他的地址总线宽度:分析:寻址能力8KB ,即1024*8=8192个内存单元。 8192 = 2的13次方。所以地址总线宽度为13知识点:微机存储器的内存单元是字节。1个内存单元是1个字节,即8位(Bit)一个CPU有N根地址线,则可以说这个CPU的地址总线宽度为N,这样的CPU的最大可寻找2的N次方个内存单元2.1KB的存储器有___存储单元?存储器的编号... 阅读全文