摘要:
http://www.agilesharp.com/u/yanyangtian/Blog.aspx/t-196IIS负载均衡-Application Request Route详解第二篇:创建与配置Server Farmhttp://www.cnblogs.com/yanyangtian/archive/2012/03/27/2419024.htmlhttp://blogs.technet.com/b/exchange/archive/2013/10/16/iis-arr-as-a-reverse-proxy-and-load-balancing-solution-for-o365-excha 阅读全文
摘要:
https://github.com/ashtuchkin/node-milleniumhttp://blog.caustik.com/2012/08/19/node-js-w1m-concurrent-connections/ 阅读全文
摘要:
http://tqcblog.com/2011/01/22/asp-net-mvc-3-razor-views-in-sharepoint/ASP.NET MVC 3 has just been released, and I really like the new Razor syntax for views. However, I work with SharePoint, which is solidly based on WebForms and .NET 3.5. Razor requires .NET 4, and while you can host WebForms MVC p 阅读全文
摘要:
http://www.indiabix.com/technical/dotnet/http://www.codeproject.com/Articles/637480/Csharp-and-ASP-NET-Interview-Question-and-Answers 阅读全文
摘要:
http://www.ibm.com/developerworks/cn/rational/rationaledge/content/feb05/bell/http://msdn.microsoft.com/zh-cn/library/dd409436.aspxUML Sequence Diagrams: Guidelineshttp://msdn.microsoft.com/en-us/library/dd409389.aspx 阅读全文
摘要:
Go toTools -> Options -> Debugger -> GeneralUncheck the optionEnable Just My Code (Managed Only)Uncheck the optionEnable. NET Framework source stepping(this is optional)Check the optionEnable source server supportUncheck the optionRequire source files to exactly match the original versionsy 阅读全文
摘要:
A semi-hybrid framework that allows you to create mobile apps using Objective-C and XML/CSS 阅读全文
摘要:
static public bool SaveOrUpdate(T entity) where T: class { bool result = false; using (wechatEntities context = new wechatEntities()) { Type t = entity.GetType(); PropertyInfo[] properts = t.GetProperties(); Pro... 阅读全文
摘要:
console.log('initialize'); try { throw "breakPoint"; } catch(err) {}when I debug the extjs, the ext loader usually make the debuging breakpoints lost. I use the previous code segment to interrupt the program where I want it stop. 阅读全文
摘要:
[TestMethod] public void DynamicTest() { dynamic Customer = new ExpandoObject(); Customer.Name = "Lucy"; Customer.Age = 20; Customer.Female = true; var obj = new { name="zy", age="20" }; var t =obj.GetType().ToSt... 阅读全文