MVC Central - Latest published stories in Frameworks
1
votes

Brad Wilson: ASP.NET MVC 2 Templates, Part 1: Introduction

published 185 days, 20 hours, 14 minutes ago posted by kahanukahanu 186 days, 19 hours, 12 minutes ago
Tuesday, January 26, 2010 9:53:49 PM GMT Monday, January 25, 2010 10:55:56 PM GMT
Series IndexPart 1: Introduction Part 2: ModelMetadataPart 3: Default TemplatesPart 4: Custom Object TemplatesPart 5: Master Page TemplatesIntroduction to Templates One of the major new features in ASP.NET MVC 2 is templates. This is a feature that’s similar to Dynamic Data for WebForms. Given an object of a given type, the system can automatically display or edit that object, whether it’s a simple data item (like an integer, a decimal, a string, etc.) or a complex data item (like a class).Html.Display... (more)
category: Frameworks | clicked: 9 | comment | | source: bradwilson.typepad.com
tags: ASP.NET MVC
1
votes

Single Project Areas With ASP.NET MVC 2 Preview 1

published 185 days, 20 hours, 14 minutes ago posted by kahanukahanu 190 days, 18 hours, 41 minutes ago
Tuesday, January 26, 2010 9:53:49 PM GMT Thursday, January 21, 2010 11:26:53 PM GMT
5 CommentsPrint UPDATEThis post is now obsolete. Single project areas are a core part of ASP.NET MVC 2. Preview 1 of ASP.NET MVC 2 introduces the concept of Areas. Areas provide a means of dividing a large web application into multiple projects, each of which can be developed in relative isolation. The goal of this feature is to help manage complexity when developing a large site by factoring the site into multiple projects, which get combined back into the main site before deployment. Despite the mult... (more)
category: Frameworks | clicked: 6 | comment | | source: haacked.com
tags: ASP.NET MVC
1
votes

ASP.NET MVC2 Preview 2: Areas and Routes

published 185 days, 20 hours, 14 minutes ago posted by kahanukahanu 190 days, 18 hours, 44 minutes ago
Tuesday, January 26, 2010 9:53:49 PM GMT Thursday, January 21, 2010 11:24:01 PM GMT
ASP.NET MVC2 Preview 2: Areas and Routes In ASP.NET web forms I’ve used the “sub-web project” trick to break apart large web applications. It has some downsides, but generally works. ASP.NET MVC 2 will include built-in support for breaking apart a large MVC application into “areas”. To quote ScottGu: Areas provide a means of grouping controllers and views to allow building subsections of a large application in relative isolation to other sections. Each area can be implemented as a separate ASP.NET MV... (more)
category: Frameworks | clicked: 33 | comment | | source: odetocode.com
tags: ASP.NET MVC
1
votes

ASP.NET MVC Northwind Demo using SubSonic - Part Tres

published 185 days, 20 hours, 14 minutes ago posted by kahanukahanu 192 days, 23 hours, 55 minutes ago
Tuesday, January 26, 2010 9:53:49 PM GMT Tuesday, January 19, 2010 6:12:45 PM GMT
In Part 1, I built a simple Northwind ASP.NET MVC application using Entity Spaces and maintained the Entity Spaces references throughout the application.  This is not a loosely coupled application, but it does allow for slick and easy Entity Spaces relationship mapping in the View and in other layers of the application.  The downside is that a reference to the Entity Spaces DLL's need to be made in each layer. In Part Deux, I refactored the application to be loosely coupled.  This helps promote a very f... (more)
category: Frameworks | clicked: 6 | comment | | source: www.mvcstarterkits.net
tags: ASP.NET MVC
1
votes

ASP.NET MVC Northwind Demo using Entity Spaces - Part Deux

published 185 days, 20 hours, 14 minutes ago posted by kahanukahanu 192 days, 23 hours, 56 minutes ago
Tuesday, January 26, 2010 9:53:49 PM GMT Tuesday, January 19, 2010 6:12:05 PM GMT
In Part 1 of this short series, I discussed how to build a simple ASP.NET MVC application using Entity Spaces.  If you have any Object Oriented background you will have noticed that that application was what is called, "tightly coupled".  That means that one set of objects depends on another.  This is generally a bad idea as it makes your application less flexible and extendable. In this article, I will discuss what changes are necessary to make the application "loosely coupled", which in turn will make... (more)
category: Frameworks | clicked: 2 | comment | | source: www.mvcstarterkits.net
tags: ASP.NET MVC