<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Fire my passion</title><subtitle type="text">Anything with my most passion……</subtitle><id>http://feed.cnblogs.com/blog/u/16366/rss</id><updated>2011-08-24T23:12:42Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/16366/rss"/><entry><id>http://www.cnblogs.com/everx/archive/2011/08/25/2152728.html</id><title type="text">CruiseControl.net - 找到的一些文档。分享出来</title><summary type="text">/Files/everx/Continuous_Integration_From_Theory_to_Practice_2nd_Ed.pdf/Files/everx/Continuous_Integration_From_Theory_to_Practice.pdf</summary><published>2011-08-24T23:13:00Z</published><updated>2011-08-24T23:13:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2011/08/25/2152728.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2011/08/25/2152728.html"/><content type="html">&lt;p&gt;&lt;a href="http://files.cnblogs.com/everx/Continuous_Integration_From_Theory_to_Practice_2nd_Ed.pdf"&gt;/Files/everx/Continuous_Integration_From_Theory_to_Practice_2nd_Ed.pdf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://files.cnblogs.com/everx/Continuous_Integration_From_Theory_to_Practice.pdf"&gt;/Files/everx/Continuous_Integration_From_Theory_to_Practice.pdf&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://www.cnblogs.com/everx/aggbug/2152728.html?type=1" width="1" height="1" alt=""/&gt;&lt;p&gt;&lt;a href="http://www.cnblogs.com/everx/archive/2011/08/25/2152728.html" target="_blank"&gt;本文链接&lt;/a&gt;&lt;/p&gt;</content></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/12/17/1626382.html</id><title type="text">【摘抄】回归测试（Regression Test）</title><summary type="text">回归测试（Regression Test）问：我听说不少关于Regression Test的介绍，但是它到底是怎么&amp;#8220;回归&amp;#8221;法？回归到哪里去？我还是没搞懂。答：Regress 的英语定义是： return to a worse or lessdeveloped state。是倒退、退化、退步的意思。在软件项目中，如果一个模块或功能以前是正常工作的，但是在一个新的构建中出了问题...</summary><published>2009-12-17T06:26:00Z</published><updated>2009-12-17T06:26:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/12/17/1626382.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/12/17/1626382.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/10/23/1588730.html</id><title type="text">那就来说说ASP.NET MVC中的Routing吧</title><summary type="text">基本上，之前已经把MVC简要的学了一遍。现在就来深入看一下各个模块了。ASP.NET MVC中的Routing是单独的一个模块，在整个ASP.NET架构中起到了很大的作用，而且应用越来越广泛。MVC就是其中之一。现在我们做的网站也好，应用程序也好，都是基于WebForm的。所以一般来说URL就反映了整个网站的结构。然后所有的参数传递一般就是通过QueryString或者Session，因为后者需要...</summary><published>2009-10-23T07:54:00Z</published><updated>2009-10-23T07:54:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/10/23/1588730.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/10/23/1588730.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/10/22/1586938.html</id><title type="text">ASP.NET MVC - View</title><summary type="text">首先，我要说的是，ASP.NET MVC的这个View并不是简单的Page而已，它实现了接口IView[代码]在ASP.NET MVC中，自带了一个默认的View那就是WebFormView 然后呢，在web请求到达controller，并且由controller返回ViewResult之后的操作，大概是这个样子的： ViewResult本身执行 ExecuteResult方法。这个方法是Acti...</summary><published>2009-10-22T09:00:00Z</published><updated>2009-10-22T09:00:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/10/22/1586938.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/10/22/1586938.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/10/20/1586891.html</id><title type="text">ASP.NET MVC - Controller（part Ⅱ）</title><summary type="text">接着上次说的，这次继续说一下Controller的其他功能。首先是IModelBinder接口。它只有一个方法：[代码]这个方法可以将用户输入（Form，Route，Querystring）转换成我们自定义的类。ASP.NET MVC自身自带了一个Model Binder：DefaultModelBinder。它可以将输入值转换成.net 的原生类型，甚至是IList类型。但是如果我们需要将输入转...</summary><published>2009-10-20T06:00:00Z</published><updated>2009-10-20T06:00:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/10/20/1586891.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/10/20/1586891.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/10/15/1583907.html</id><title type="text">ASP.NET MVC - Controller（part Ⅰ）</title><summary type="text">Model已经简单的看过了，在深入下去可能要讨论如何针对领域建模还有相关的设计模式等等，不是一两句能说清楚的。那么，这次就把眼光全部聚焦在Controller上吧。首先，要了解Controller的作用。如果没有Controller的话呢，所有的请求到要被导向View里面去，无形中使得View变得臃肿且不好维护，像是之前的WebForm。所以，Controller就是为了把处理请求这部分功能挪出来...</summary><published>2009-10-15T07:11:00Z</published><updated>2009-10-15T07:11:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/10/15/1583907.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/10/15/1583907.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/10/14/1583294.html</id><title type="text">ASP.NET MVC - Model</title><summary type="text">在MVC模式当中，Model的意义最为深远，最重要。对于任何的程序或是软件来讲，如果没有一个好的Model，甚至是没有Model，那就没有任何的用处了。简而言之，Model就是软件的核心。在ASP.NET MVC中，它的这个Model不仅仅就是广义上的那个域模型，有时，它是基于域模型的变体，即表现模型（为了视图的显示而产生的模型）。域模型是指，一些对象，为了解决某个现实世界的问题，按照逻辑关系组织...</summary><published>2009-10-14T07:35:00Z</published><updated>2009-10-14T07:35:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/10/14/1583294.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/10/14/1583294.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2009/09/29/1576158.html</id><title type="text">学一下ASP.NET MVC</title><summary type="text">这几天考虑了一下自己的发展方向，所以准备静下心来好好学点东西。那么就从asp.net mvc开始吧！首先，学这个mvc应该了解一下mvc的概念，这个网上几乎遍地都是。所以也就不罗嗦了。简而言之，就是Model-View-Controller的缩写。Web开发从一开始的CGI脚本，到微软的ASP，再到ASP.NET, 再至目前为止的MVC经历了不少的改革。从WebForm发展到MVC也算是大势所趋。...</summary><published>2009-09-29T01:35:00Z</published><updated>2009-09-29T01:35:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2009/09/29/1576158.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2009/09/29/1576158.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2008/03/19/1112879.html</id><title type="text">C# 3.0的新特性</title><summary type="text">本地类型推断、Lambda表达式、扩展方法、对象初始化器、匿名类、查询表达式</summary><published>2008-03-19T03:27:00Z</published><updated>2008-03-19T03:27:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2008/03/19/1112879.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2008/03/19/1112879.html"/></entry><entry><id>http://www.cnblogs.com/everx/archive/2008/03/07/1094591.html</id><title type="text">jQuery学习笔记（八）</title><summary type="text">jQuery中的ajax</summary><published>2008-03-07T01:32:00Z</published><updated>2008-03-07T01:32:00Z</updated><author><name>everx</name><uri>http://www.cnblogs.com/everx/</uri></author><link rel="alternate" href="http://www.cnblogs.com/everx/archive/2008/03/07/1094591.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/everx/archive/2008/03/07/1094591.html"/></entry></feed>
