<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Daniel's blog</title><subtitle type="text">.Net - Just cool!</subtitle><id>http://feed.cnblogs.com/blog/u/6678/rss</id><updated>2005-11-18T06:36:03Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/6678/rss"/><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/11/18/279622.html</id><title type="text">Interop .NET and J2EE via WebService Contract-first approach</title><summary type="text">VisualStudio引进的ASMX的确大大简化了XML Web Services的开发过程，但也存在一个比较突出的弊端，那便是VisualStudio的设计使用的是Code-first approach，先编写代码，再由.NET Framework动态生成Web Services的WSDL，而不是实施SOA更加认同的Contract-first approach。近日实践了一把在开发ASMX ...</summary><published>2005-11-18T06:36:00Z</published><updated>2005-11-18T06:36:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/11/18/279622.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/11/18/279622.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/10/02/248026.html</id><title type="text">送一点GMail的邀请</title><summary type="text">前些日子也是从这里得到邀请的，不知道还有没有朋友想要，发完为止吧。daniel_ngn@hotmail.com</summary><published>2005-10-02T00:33:00Z</published><updated>2005-10-02T00:33:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/10/02/248026.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/10/02/248026.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/10/01/247686.html</id><title type="text">运用PreviousPage简化提交流程</title><summary type="text">若是一个page1.aspx向page2.aspx提交的流程，则在page2.aspx的顶部添加如下声明：&amp;lt;%@ PreviousPageType VirtualPath="~/page1.aspx" %&amp;gt;设置page1.aspx的PostbackUrl属性为~/page2.aspx。假设page1.aspx的codebehind中有名为test()的方法，则在page2.aspx中可...</summary><published>2005-10-01T01:22:00Z</published><updated>2005-10-01T01:22:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/10/01/247686.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/10/01/247686.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/10/01/247682.html</id><title type="text">从CodeBehind访问页面上的控件（2.0）</title><summary type="text">和以前的用法有点不同，所以记录下来了。ArrayList list = new ArrayList();foreach (GridViewRow row in GridView1.Rows){CheckBox box = (CheckBox)row.Cells[3].Controls[1];if (box.Checked)list.Add(row.Cells[0].Text);}return li...</summary><published>2005-10-01T00:59:00Z</published><updated>2005-10-01T00:59:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/10/01/247682.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/10/01/247682.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/09/29/246561.html</id><title type="text">一个用户故事的样例（极限编程）</title><summary type="text">用户故事是从用户的角度对系统功能的描述，通过与用户一起探讨而得出，事实上XP的实践应由用户亲手撰写用户故事，但对很多用户来说并不容易，所以很多的实践过程中是开发人员和用户一起撰写。开发人员依照用户故事中的描述估测完成每个任务需要的时间，并从项目经理处认领自己负责的任务，通常鼓励开发人员每次认领不同类型的任务，以提升对整个项目的认识及对不同类型技术的掌握。此处估测的时间在项目初期可能和实际完成时间有...</summary><published>2005-09-29T04:25:00Z</published><updated>2005-09-29T04:25:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/29/246561.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/29/246561.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/09/28/245858.html</id><title type="text">生成Excel报表的最直观方法</title><summary type="text">用HTML语法来编写xls文件尤其简单快捷，同时也具有基本的字体设置、单元格合并等功能，对于样式不是非常复杂的报表倒是不错的途径。比如下列文本：&amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Data&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;在Excel中就能正常渲染，感觉比使用COM组件更方便点，对于普通的报表就无须COM或者VSTO来杀鸡用牛刀了...</summary><published>2005-09-28T05:41:00Z</published><updated>2005-09-28T05:41:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/28/245858.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/28/245858.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/09/28/245808.html</id><title type="text">给还未曾尝试过Microsoft Enterprise Library的朋友们</title><summary type="text">最近稍微尝试了一下Microsoft Enterprise Library，感觉淋漓畅快，所以从新手的角度描述一下这个好玩的东西。Microsoft Enterprise Library来源于MSDN patterns &amp;amp; practices，现在的版本是June 2005。它由一系列的.net项目和辅助工具构成，这些项目生成的DLL便是Enterprise Library的核心。这些类库...</summary><published>2005-09-28T04:43:00Z</published><updated>2005-09-28T04:43:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/28/245808.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/28/245808.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/09/27/245419.html</id><title type="text">渴望XP－勇气篇</title><summary type="text">此篇援引资深项目经理tony的切身感受，对于实施XP过程中所需具备的多方面勇气，tony概括为以下几点：一.你有勇气相信你现在写的测试、代码足够满足需求二.你有勇气在需求变化时重构代码三.你有勇气相信不做设计（实际上是在开发中设计）的开发，能在最后把各个零散的故事搭建成一个成型的系统我想具备勇气便是已经战胜了自己，打破了最为艰难的一道屏障，实施XP便有了最根本的思想保证，其它的一切大可归为技术问题...</summary><published>2005-09-27T13:02:00Z</published><updated>2005-09-27T13:02:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/27/245419.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/27/245419.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/09/26/244220.html</id><title type="text">渴望XP－测试篇</title><summary type="text">这里主要想讨论一下单元测试，目前Unit Test越来越被主流开发平台看好，先是Eclipse、NetBeans，现在又是VisualStudio 2005，甚至在Team System中还能施加强制Unit Test的Policy，将来的Weblogic Workshop 9可能也会进行相关集成，业界对此重视程度可见一斑。虽然Unit Test的好处不言而喻，但至今在中国，多数的项目开发仍然不会...</summary><published>2005-09-26T05:32:00Z</published><updated>2005-09-26T05:32:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/26/244220.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/26/244220.html"/></entry><entry><id>http://www.cnblogs.com/daniel_ngn/archive/2005/09/26/244196.html</id><title type="text">全球6大广告集团</title><summary type="text">NO.1 Omnicom (天联广告 李岱艾 恒美 浩腾媒体等)NO.2 WPP集团(奥美 JWT 达彼思 百帝 电扬 精信 传立媒体 尚扬媒体 迈势媒体 灵立媒体等)NO.3 IPG集团 (麦肯 FCB 灵狮 优势麦肯等)NO.4 Publics集团 (盛世长城 李奥贝纳 阳狮恒威 实力媒体 星传媒体等)NO.5 Dentsu集团 (***广告)NO.6 Havas集团 (灵智大洋等)</summary><published>2005-09-26T05:04:00Z</published><updated>2005-09-26T05:04:00Z</updated><author><name>Daniel</name><uri>http://www.cnblogs.com/daniel_ngn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/26/244196.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/daniel_ngn/archive/2005/09/26/244196.html"/></entry></feed>
