ASP.NET MVC 프레임웍의 출시가 임박한 가운데, ASP.NET MVC Release Candidate 2가 출시되었다. RC1에 있었던 몇 가지 버그가 수정되었고 새 기능이 추가되었다. 변경된 것으로는 ASP.NET MVC RC 2 설치시에 .NET Framework 3.5 SP1을 요구한다. 하지만 실행시 런타임 자체는 SP1에 대한 dependency가 없기 때문에 binary 배포할 경우 SP1 없는 .NET Framework 3.5 설치하에서도 동작한다. 또한 쿠키를 통한 사기 방지를 위해 쿠키에 쿠키 경로를 포함시킬 수 있으며, 포함된 jQuery의 버전이 1.2.6 에서  1.3.1 로 변경되었다. DefaultModelBinder의 validation 관련 메시지가 현지화될 수 있게 변경되었고, 에러 메시지 출력시 헤더 역할을 하는 메시지를 원하는 내용으로 채울 수 있도록 하는 새로운 ValidationSummary 메소드가 overload되었다.

아래 싸이트에서 다운로드 받을 수 있다.
http://www.microsoft.com/downloads/details.aspx?FamilyID=ee4b2e97-8a72-449a-82d2-2f720d421031&displaylang=en

 

Bug Fixes since RC 1

·         The DropDownList helper no longer throws an exception if a null argument is passed for selectList.

·         In the Web.config file, the LogOn URL value in the authentication section has been corrected.

·         Code nuggets that are direct children of the head element do not cause an exception if the runat="server" attribute is added to them.

·         The CheckBox and RadioButton helpers now restore current values from model state.

·         The Default.aspx page that is included in the default project template now works correctly with output caching. Note that this file is not needed if the application is running under IIS 7 Integrated mode.

Upgrading from the RC 1 Release to Release Candidate 2

·         Update the references to the following assemblies to point to the RC 2 versions:

           System.Web.Mvc.dll

     By default, this assembly is located in the following folder:

          %ProgramFiles%\Microsoft ASP.NET\ASP.NET MVC 1.0 RC2\Assemblies

·         After you have made this change, compile your application and resolve any compilation errors.
Posted by 장현춘