profile for Macon_Cao at Stack Overflow, Q&A for professional and enthusiast programmers
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
  2012年3月29日
摘要: DemoAllow the end user has ability to change the background color with pre-defined color.Steps1. Create a datatype named BackGroundColor.2. Select Color Picker as its render control and select Nvarchar as its Database datatype.3. Add the pre-defined colorsYou can add any number of colors as you wish 阅读全文
posted @ 2012-03-29 23:27 无所畏惧,有所期待 阅读(1048) 评论(0) 推荐(1) 编辑
  2012年3月21日
摘要: Hg是一个不错的源代码管理器。但是在进行源代码管理时,它会将所有的文件全部都列出来,很是烦恼。 最近发现其有一个ignore功能,可以将不需要纳入源代码管理的文件或者是(更灵活的方式)正则表达式统统过滤掉。 截图如下: 对任意还没有纳入hg源代码管理的文件点击右键,选择Ignore。你会看见如下窗体。 可以选择文件名方式过滤,也可以选择正则表达式方式过滤。 我目前使用的正则表达式为: 过滤掉某... 阅读全文
posted @ 2012-03-21 22:56 无所畏惧,有所期待 阅读(1860) 评论(1) 推荐(0) 编辑
  2012年3月11日
摘要: TeamView有更新,下载地址 http://teamview.codeplex.com/ 问:TeamView是什么? 答:一个处于概念阶段的项目进度管理系统。 问:什么叫概念阶段? 答:即设计上满足了抽象概念的实现,但离产品级还有很长的路要走。例如,要让当前的发布在你的系统上运行起来,你的自己去配置数据库;当多个用户一同使用时,没有用户权限的限制。 问:它的核心价值是什么 答:从时间消... 阅读全文
posted @ 2012-03-11 11:56 无所畏惧,有所期待 阅读(1479) 评论(4) 推荐(2) 编辑
  2012年1月10日
摘要: Cache的获取及定义 Cache的获取代码: var cache = CacheManager.Instance.GetCache<KeyType, ValueType>(); 因此对Cache的定... 阅读全文
posted @ 2012-01-10 15:07 无所畏惧,有所期待 阅读(2384) 评论(0) 推荐(1) 编辑
  2012年1月6日
摘要: 以下是TDD开发中类型的一般分布 这里面关键的类型为 RequestUnitControl, RequestUnitModel, IConfigDataProvider和RequestUnitMod... 阅读全文
posted @ 2012-01-06 22:51 无所畏惧,有所期待 阅读(2443) 评论(0) 推荐(0) 编辑
  2012年1月2日
摘要: The Model is the M in MVC which is the current popular design pattern in Asp.net. To think in Model, I have two points. Model depends on the interfaces. Divide the business logic on the model into i... 阅读全文
posted @ 2012-01-02 21:20 无所畏惧,有所期待 阅读(905) 评论(0) 推荐(0) 编辑
  2011年12月11日
摘要: Document Type 用于定义页面显示的内容 Template 定义页面的显示样式,以及Document Type中定义的内容。一般来说Document Type与Template是一一对应的 Macro 用于将功能引入到Template中 也可以通过它来引入一般的.net用户控件 Umbraco DataType 定义具体的界面元素 通过Document Type引入 阅读全文
posted @ 2011-12-11 22:25 无所畏惧,有所期待 阅读(846) 评论(0) 推荐(0) 编辑
  2011年12月8日
摘要: author:czy DI pattern (Dependency Injection) frees us from the sophisticated construction of the depended objects. In the business view, it helps the developers concentrate on the the business domai... 阅读全文
posted @ 2011-12-08 16:17 无所畏惧,有所期待 阅读(480) 评论(0) 推荐(0) 编辑
  2011年10月23日
摘要: CodeProject What’s object cache Object Cache is a cache system which key is built on complex object. The complex object benefits us to define the key with multiple values. However, the features of ob... 阅读全文
posted @ 2011-10-23 23:16 无所畏惧,有所期待 阅读(1027) 评论(0) 推荐(0) 编辑
  2011年9月1日
摘要: 作为程序员,大部分时间是在已有的代码上代码工作。要对已有的代码进行调整,首先就要搞清楚当前代码中蕴含的逻辑关系。所以常常有程序员调侃说花了大半天时间看代码,最后写代码的时间只有几分钟。所以,对已有代码的分析质量将影响(甚至会决定)最终代码修改的质量。 SourceInsight在代码分析上给予程序员极大的帮助。尽管我是初次使用,但其功能实在是让人兴奋。 大家可以从官网上下载 我平时主要用Sourc... 阅读全文
posted @ 2011-09-01 16:33 无所畏惧,有所期待 阅读(4027) 评论(15) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页