"If at first you don't succeed; call it version 1.0" :-Unknown

Pages

Showing posts with label VS 2012. Show all posts
Showing posts with label VS 2012. Show all posts

Tuesday, September 24, 2013

Wednesday, November 28, 2012

Basics Of MVC 4 Day 1

Hi *.*,
Today i'm just giving an outline about MVC 4 and Creating a sample application too.
  
ASP.NET MVC is a framework for building web applications that applies the general Model
View Controller pattern to the ASP.NET framework. The MVC separates the user interface (UI) of an application into three main aspects:


  •  The Model: A set of classes that describes the data you’re working with as well as the business rules for how the data can be changed and manipulated
  •   The View: Defines how the application’s UI will be displayed
  •    The Controller: A set of classes that handles communication from the user, overall application flow, and application-specific logic
MVC 4

As we are directly going to 4th version of MVC, we had got lot of advantage
  •  Json support
  • JavaScript support 
  • Improved Visual Studio tooling,
  • Asynchronous controllers support,
  • The Razor view engine
  • Support for .NET 4 Data Annotations
  • Improved model validation
  • Greater control and flexibility with support for dependency resolution and global action filters
  • ASP.NET Web API
  • Enhancements to default project templates
  • Mobile project template using jQuery Mobile
  • Display Modes
  • Task support for Asynchronous Controllers
  • Bundling and minification
  • Service handling
And So On…