上一页 1 ··· 12 13 14 15 16
摘要: DataGrid行合并。 阅读全文
posted @ 2006-12-05 18:00 南守拥 阅读(641) 评论(4) 推荐(0) 编辑
摘要: 样子Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 2 3This is a JavaScript example 4 910 Hi, man! 11 样子2Code highlighting produced by Actipro CodeHi... 阅读全文
posted @ 2006-12-04 15:45 南守拥 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 这是一个高深的东东哦, 写状态栏Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1 调用方法Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeH... 阅读全文
posted @ 2006-12-04 14:29 南守拥 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 老马说:A single instance that handles the business logic for all rows in a database table or view.我说:一个实例操作所有一个数据库表或视图的业务逻辑。One of the key messages of object orientation is bundling the data with the beh... 阅读全文
posted @ 2006-12-02 11:48 南守拥 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 按老马的话说:An object model of the domain that incorporates both behavior and data.按我的话说:是系统中数据和行为的一种组合方式,当然是包装到类中。这个类可以命名为我们做的项目中的名词。如:项目,包,供应商等。当然我的理解是不对的,我缺少了对业务之间关系的一种联系。最惨的情况是业务逻辑相当的复杂。商业规则和逻辑描述了不同的场景... 阅读全文
posted @ 2006-11-30 17:30 南守拥 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 面向服务的出现可以说是面向对象和商业的全力所致。。 阅读全文
posted @ 2006-11-30 15:06 南守拥 阅读(572) 评论(0) 推荐(0) 编辑
摘要: http://book.csdn.net/bookfiles/16/100165762.shtml对于业务的东西,我还是不同意下放的。毕竟事务并不总包含一个事务,有可能包含其它的事务。我们现在的思考方式还是没有离开Transaction Script,受二层开发方式影响太深了,可悲啊Ing.. 阅读全文
posted @ 2006-11-30 08:47 南守拥 阅读(358) 评论(0) 推荐(0) 编辑
摘要: Transaction Script是一种最简单和最容易接受的处理业务的方式。按martinfowler的说法:Organizes business logic by procedures where each procedure handles a single request from the presentation。许多的业务过程可以看做是许多的业务过程的集合。一个业务过程可能是对数据的一... 阅读全文
posted @ 2006-11-29 13:30 南守拥 阅读(784) 评论(0) 推荐(0) 编辑
摘要: http://www.microsoft.com/china/msdn/library/architecture/architecture/architecturetopic/MVP.mspx?mfr=true主要思想是把以前的View依赖于Bll反转,并把View中的相关控件对象进行抽象。实现后如下:我整理的例子的类之间的关系:/Files/nanshouyong326/MVP.rar 还有几点... 阅读全文
posted @ 2006-11-29 11:48 南守拥 阅读(462) 评论(1) 推荐(0) 编辑
摘要: CollectionBase实现强类型Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections; 3 4namespace Relaction.Collections 5{ 6 ... 阅读全文
posted @ 2006-11-28 13:32 南守拥 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 自定义集合类: 自定义强类型集合类Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections; 3 4namespace Relaction.Collections 5{... 阅读全文
posted @ 2006-11-28 13:22 南守拥 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 类: 功能齐全的集合Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections; 3 4namespace Relaction.Collections 5{ 6 ... 阅读全文
posted @ 2006-11-28 13:05 南守拥 阅读(1661) 评论(2) 推荐(0) 编辑
摘要: 实现ICollection的范例 自定义Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections; 3 4namespace Relaction.Collections 5{ 6... 阅读全文
posted @ 2006-11-28 12:40 南守拥 阅读(2420) 评论(1) 推荐(0) 编辑
摘要: 定义: 定义Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections; 3 4namespace Relaction.Collections 5{ 6 /**//// ... 阅读全文
posted @ 2006-11-28 12:27 南守拥 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 简单的ORM例子。 阅读全文
posted @ 2006-11-28 10:28 南守拥 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 业务层: 业务层Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.EnterpriseServices; 3 4using MyBusiness.Personnel; 5using MyBusi... 阅读全文
posted @ 2006-11-27 17:09 南守拥 阅读(370) 评论(2) 推荐(0) 编辑
摘要: 可绑定到成员变量的Attribute。 可绑定到成员变量上的AttributeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Reflection; 3using System.Compone... 阅读全文
posted @ 2006-11-27 10:06 南守拥 阅读(342) 评论(2) 推荐(0) 编辑
摘要: 自定义Attribute 自定义AttributeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2 3namespace Relaction.test1 4{ 5 /**//// 6 /// 自定义的At... 阅读全文
posted @ 2006-11-27 09:02 南守拥 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 服务器: ServerCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System.Runtime.Remoting.Channels.Tcp; 2using System.Runtime.Remoting.Channels.Http;... 阅读全文
posted @ 2006-11-26 21:46 南守拥 阅读(2497) 评论(1) 推荐(0) 编辑
摘要: 我本不是个好争之人,但在技术上我从来都是表达自己的想法而后快.记得刚接触一期,我就觉得那里有对头.随着时间的推移,我才感觉到原来是Asp.net程序员在开发的过程常会出现的错误使之(先这样认为).整个项目采用的是后台实现业务逻辑和数据访问;这就出现的SQL语句和业务逻辑混合在一起的大问题.(会出那些问题呢?)(1)数据访问出现在后台中,将不得不面对一个数据访问的代码重复问题,在量的相同表操作的语句... 阅读全文
posted @ 2006-11-26 20:51 南守拥 阅读(429) 评论(3) 推荐(0) 编辑
摘要: 模块 CLR程序存在于模块(Module)之中.一个CLR模块是一个字节流,通常做为一个文件存储在本地的文件系统中或者Web服务器上. CLR模块格式:PE/COFF表头,PE/COFF的.text部分(含有无数据表的地方) . 模块输出选项: C# 直接可加载 从Shell中可直接运行 可访问控... 阅读全文
posted @ 2006-11-26 19:51 南守拥 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 终于进入了我梦想的地方------英业达 经过层层的考核,终于进入了英业达。到现在虽然才短短的一个星期,但是感觉好象过了很久,那里的思想都很先进,是我以前所没有接触过的,以前只是听说过structs,进去之后才对它有了深刻的理解。懂得了这个架构每个组成部分的含义,还有其所起到的作用,实现什么功能。每一层分的都是那么详细、清晰、明了。 参加了公司的培训,虽然每次的时间... 阅读全文
posted @ 2006-11-25 12:29 南守拥 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16