05 2015 档案

增加节点额度可能用到
摘要:BasLimitConfig.cs/* Copyright (c) 2014 Xiamen HaiHui Software Co., Ltd. All rights reserved* * Create by huanglc@holworth.com at 2014-12-01 16:19:22**... 阅读全文

posted @ 2015-05-30 14:58 听哥哥的话 阅读(244) 评论(0) 推荐(0)

JSONResult引用某博客
摘要:http://www.cnblogs.com/JerryWang1991/archive/2013/03/08/2950457.html最近开始用MVC做项目,在使用 JsonResult返回数据的时候,日期被反射成了/Date 1233455这种格式,遍查网上都是在客户端使用JS来处理这个问题的,... 阅读全文

posted @ 2015-05-29 16:57 听哥哥的话 阅读(1064) 评论(0) 推荐(0)

自动创建orcl表
摘要:using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Text;using Holworth.Utility;namespace ConsoleApplicatio... 阅读全文

posted @ 2015-05-26 21:23 听哥哥的话 阅读(241) 评论(0) 推荐(0)

linq join一些忘记的操作
摘要: 阅读全文

posted @ 2015-05-24 21:27 听哥哥的话 阅读(207) 评论(0) 推荐(0)

关于简单的三层的简化(bll,dal,model)的封装这里全部都在一个文件主要在于明白意思
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 封装泛型CRUD{ public class TeacherInfoDAL : BaseDAL where T : ... 阅读全文

posted @ 2015-05-24 12:09 听哥哥的话 阅读(701) 评论(0) 推荐(0)

状态模式c#(状态流转例子吃饭)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 状态模式{ public interface State { void doSomething(Person p);... 阅读全文

posted @ 2015-05-24 01:54 听哥哥的话 阅读(368) 评论(0) 推荐(0)

模板模式c#(非常简单,但又非常简洁好玩)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 模板模式{ public abstract class CarProces { public abstract vo... 阅读全文

posted @ 2015-05-24 00:39 听哥哥的话 阅读(347) 评论(0) 推荐(0)

职责链模式c#(处理车)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 职责链模式{ public interface ICarHandler { ICarHandler next { g... 阅读全文

posted @ 2015-05-24 00:16 听哥哥的话 阅读(182) 评论(0) 推荐(0)

中介者模式c#(媒婆版)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 中介者模式{ public abstract class Person { public string Name {... 阅读全文

posted @ 2015-05-23 23:19 听哥哥的话 阅读(164) 评论(0) 推荐(0)

hra 直线
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using Framework;u... 阅读全文

posted @ 2015-05-22 18:12 听哥哥的话 阅读(165) 评论(0) 推荐(0)

ForwardPriceSimulationService
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.IO;using Framework;using Holwo... 阅读全文

posted @ 2015-05-22 10:24 听哥哥的话 阅读(178) 评论(0) 推荐(0)

2015星期五
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.IO;using Framework;using Holwo... 阅读全文

posted @ 2015-05-22 00:09 听哥哥的话 阅读(175) 评论(0) 推荐(0)

firstpage 2015/5/21
摘要:正在处理的任务 ... 阅读全文

posted @ 2015-05-20 23:20 听哥哥的话 阅读(146) 评论(0) 推荐(0)

util.js
摘要:jQuery.extend({ parseJSON: function (data) { if (typeof data !== "string" || !data) { return null; } // Make sure leading/trailing whitespace is remov... 阅读全文

posted @ 2015-05-20 07:07 听哥哥的话 阅读(2155) 评论(0) 推荐(0)

可能用到
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text.RegularExpressions;using System.Web;using System.Web.UI;usi... 阅读全文

posted @ 2015-05-18 21:48 听哥哥的话 阅读(176) 评论(0) 推荐(0)

职责链 评价:挺好玩的 稍微复杂版 类似出栈入栈 (原理职责链调用一个之后跳转到第二个执行在跳转第三个执行 接下来因为每次调用完后都会返回被调用的位置)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication20{ public class Response { public strin... 阅读全文

posted @ 2015-05-16 14:57 听哥哥的话 阅读(164) 评论(0) 推荐(0)

职责链模式 通过管理端进行解耦
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication20{ public interface IFiler { string doF... 阅读全文

posted @ 2015-05-16 12:55 听哥哥的话 阅读(145) 评论(0) 推荐(0)

etl业务说明图
摘要: 阅读全文

posted @ 2015-05-16 11:17 听哥哥的话 阅读(129) 评论(0) 推荐(0)

etl使用表
摘要:select * from etl_data_map t;select * from etl_column t;select * from etl_table_def t;select * from verify_check t;select * from etl_check_method t; 阅读全文

posted @ 2015-05-15 08:41 听哥哥的话 阅读(184) 评论(0) 推荐(0)

etl业务验证方法1
摘要:/* Copyright (c) 2015 Xiamen Weixin Software Co., Ltd. All rights reserved* * Create by huanglc@holworth.com at 2015-04-23 21:52:45**/using System;usi... 阅读全文

posted @ 2015-05-14 21:29 听哥哥的话 阅读(217) 评论(0) 推荐(0)

etl
摘要:EtlCheckMethod.cs/* Copyright (c) 2015 Xiamen HaiHui Software Co., Ltd. All rights reserved* * Create by huanglc@holworth.com at 2015-04-23 21:52:52**... 阅读全文

posted @ 2015-05-14 07:13 听哥哥的话 阅读(272) 评论(0) 推荐(0)

删除重复记录的最新sql脚本
摘要:delete from tb1 where id in(select t2.minnum from(select MIN(t1.id) as minnum,t1.col1 as ars ,COUNT(1) as cx from tb1 t1 group by t1.col1)t2)select * ... 阅读全文

posted @ 2015-05-10 15:33 听哥哥的话 阅读(205) 评论(0) 推荐(0)

hrabs 首页 新闻,快捷菜单,响应式列表,seliverlight
摘要:正在处理的任务 市场历史数据已导入完毕.. 详情 路透资讯数据已完成更新.. 详情 交易合约盈亏最新更新.. 详情 建设银行,厦门分行交易员KSBC002远期利率交易有50比数据等待你的审批,请尽快.... 阅读全文

posted @ 2015-05-09 19:59 听哥哥的话 阅读(140) 评论(0) 推荐(0)

主播
摘要:http://www.bobo.com/802756?username=76d9ef9ada890bf7de85f331a4ad1ea0@tencent.163.com 阅读全文

posted @ 2015-05-08 23:41 听哥哥的话 阅读(126) 评论(0) 推荐(0)

窗体传值发布订阅模式(委托版)
摘要:1.Form1代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using Syst... 阅读全文

posted @ 2015-05-03 20:04 听哥哥的话 阅读(131) 评论(0) 推荐(0)

自定义扩展方法(集合泛型约束)超好用,这里理解方法当参数来使用
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication17{ public static class STSD { public st... 阅读全文

posted @ 2015-05-03 17:06 听哥哥的话 阅读(224) 评论(0) 推荐(0)

首页添加上阵指数
摘要:正在处理的任务 市场历史数据已导入完毕.. 详情 路透资讯数据已完成更新.. 详情 交易合约盈亏最新更新.. 详情 建设银行,厦门分行交易员KSBC002远期利率交易有50比数据等待你的审批,请尽快.... 阅读全文

posted @ 2015-05-03 10:19 听哥哥的话 阅读(283) 评论(0) 推荐(0)

有些标签的class有多个值,用空格隔开的,是什么意思阿?
摘要:这个div同时应用了三个class。三个class的设置都会对它起作用,相互冲突时,越后面的class优先权越高。 阅读全文

posted @ 2015-05-03 09:33 听哥哥的话 阅读(915) 评论(0) 推荐(0)

jquery选择器中的空格问题
摘要:选择器空格的问题 我是内部div我是内部div我是内部div我是内部div 我是外部div我是外部div对于上边的这两行来说:“alert("带空格的选择器的长度是:"+$(".test :hidden").length);”的弹出结果为4“alert("不带空格的选择器的长度是:"+$(".t... 阅读全文

posted @ 2015-05-03 09:30 听哥哥的话 阅读(744) 评论(0) 推荐(0)

jquery判断页面元素是否存在的方法
摘要: 阅读全文

posted @ 2015-05-02 00:14 听哥哥的话 阅读(213) 评论(0) 推荐(0)

jquery相对定位(包含find的使用 find相当于后代选择器)$("选择器1","选择器2")
摘要:2.$("选择器1","选择器2") 把第二个选择器过滤出的结果,经过选择器1再过滤 阅读全文

posted @ 2015-05-02 00:08 听哥哥的话 阅读(161) 评论(0) 推荐(0)

jquery破坏链
摘要: 阅读全文

posted @ 2015-05-01 23:40 听哥哥的话 阅读(162) 评论(0) 推荐(0)

上证指数
摘要: 阅读全文

posted @ 2015-05-01 12:22 听哥哥的话 阅读(230) 评论(0) 推荐(0)

导航