Top 10 Features in ASP.NET 4.5

1. Bundling and Minification Feature The newly introduced bundling and minification feature help to bundle and minimize the size of the java and CSS scripts and style sheets in the user application. This feature offers a great impact on the performance of user web application as a whole. The user has now a System.Web.Optimization name space that provides support for bundling and minification of files for the entire project. Once a user creates a new project in ASP.NET 4.5, these lines will be visible to the user in Global.asax file. 2. Strongly Typed Data Controls In ASP.NET 4.5, users have data controls that can be strongly typed. The user will get intelligence - the user just needs to assign the Item Type property to a model which is going to be associated with the data controls used in user .aspx pages section. 3. Model Binding - Isolating the Web Form from the Model The Model binding feature in ASP.NET 4.5 enables developers to develop Web Forms that are independent ...