上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 46 下一页
摘要: //表单填充 表单填充 , formDataLoad: function (domId, obj) { for (var property in obj) { if (obj.hasOwnProperty(property) == true) { if ($("#" + domId ... 阅读全文
posted @ 2017-07-28 16:58 小小高 阅读(245) 评论(0) 推荐(0)
摘要: 1、查询的语句: select a.id,b.name,a.*,b.* from syscomments a join sysobjects b on a.id=b.id where b.xtype='P' and a.text like '%usp_cm%' b.xtype='P'指定在什么类型的范围进行搜索 ‘%usp_cm%’就是你能记得的存储过程中的内容。 2、查找类型: se... 阅读全文
posted @ 2017-07-21 14:43 小小高 阅读(842) 评论(0) 推荐(0)
摘要: ActivationContext ac = AppDomain.CurrentDomain.ActivationContext; ApplicationIdentity ai = ac.Identity; Console.WriteLine("Full name = " + ai.FullName); Console.WriteLine("Code base = " + ai.CodeBase... 阅读全文
posted @ 2017-07-03 18:39 小小高 阅读(183) 评论(0) 推荐(0)
摘要: netsh -c "i i" add neighbors 11 "172.16.3.1" "f4-ea-67-8b-91-cc" 阅读全文
posted @ 2017-06-26 17:19 小小高 阅读(1030) 评论(0) 推荐(0)
摘要: 解决方法: require("!style-loader!css-loader!./style.css"); require("!style-loader!css-loader!./style.css"); 阅读全文
posted @ 2017-06-13 15:14 小小高 阅读(223) 评论(0) 推荐(0)
摘要: //对象冒充实现继承 function Person() { this.speak = function () { alert("我是人类"); }; } function Chinese() { Person.call(this); } var p = new Chines... 阅读全文
posted @ 2017-06-06 13:29 小小高 阅读(180) 评论(0) 推荐(0)
摘要: namespace MultipleMementoPattern { // 联系人 public class ContactPerson { public string Name { get; set; } public string MobileNum { get; set; } } // 发起人 public ... 阅读全文
posted @ 2017-05-31 16:13 小小高 阅读(216) 评论(0) 推荐(0)
摘要: namespace VistorPattern { // 抽象元素角色 public abstract class Element { public abstract void Accept(IVistor vistor); public abstract void Print(); } // 具体元素A publ... 阅读全文
posted @ 2017-05-31 16:11 小小高 阅读(163) 评论(0) 推荐(0)
摘要: namespace ChainofResponsibility { // 采购请求 public class PurchaseRequest { // 金额 public double Amount { get; set; } // 产品名字 public string ProductName { get;... 阅读全文
posted @ 2017-05-31 16:10 小小高 阅读(179) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 46 下一页