June 9, 2016

ASP.NET MVC Terminology

http://www.danylkoweb.com/Blog/aspnet-mvc-terminology-EK
https://blog.udemy.com/asp-net-mvc-tutorial/
https://mycodelines.wordpress.com/2014/04/07/differences-between-asp-net-webforms-engine-and-razor-view-engine/
http://www.dotnet-tricks.com/Tutorial/mvclist
http://www.tutorialsteacher.com/mvc/asp.net-mvc-tutorials
http://csharppulse.blogspot.in/2013/08/mvc3-interview-questions-and-answers.html
http://tutlane.com/tutorial/aspnet-mvc/

  • MVC folder structure
  • Routing - Global.aspx and routing table, bundling
  • Model
  • Controller  - Single or Multiple Action Method
  • View
  • MVC Pipeline
  • HTML Helper - @, @:, @{ }, @HTML
  • Ajax Helper - AjaxOption class and Partial view
  • Razor syntax
  • Entity Framework
  • Security and deployment

Controllers
  • Action Method (Public)
  • Action Result (return type of action)
  • ActionSelector (NonAction,ActionName,ActionVerbs)
  • Filter (Authorization ,Action ,Result ,Exception )
  • Custom Action Fiter (OnActionExecuted,OnActionExecuting,OnResultExecuted,OnResultExecuting)
  • AttributeRouting
Model
  • DataAnnotation 
  • ModelState.Valid -Validation done at view
  • ModelState.AddModelError -Check the validation at DB level
  • Remote Validation
Pass data Controller to View
  • TempData
  • ViewBag
  • ViewData
  • ViewModels
  • Model

Pass Data to Controller from View
  • Model Binders (querystring,Requst[],FormCollection, Binding to complex data)
  • Binding Attribute
View (csaspx, vbaspx,etc)
  • Routing View Engine (@,@:,@{},@model,etc)
  • Html Helpers (@Html)
  • Partial View
  • Layouts, RenderBody, RenderSection and RenderPage

Display Modes : Display modes are used to return different Views based on a device, or Display Mode

Areas

Web API


Asp.Net MVC1

  1. Released on Mar 13, 2009
  2. Runs on .Net 3.5 and with Visual Studio 2008 & Visual Studio 2008 SP1
  3. MVC Pattern architecture with WebForm Engine
  4. Html Helpers
  5. Ajax helpers
  6. Routing
  7. Unit Testing

Asp.Net MVC2

  1. Released on Mar 10, 2010
  2. Runs on .Net 3.5, 4.0 and with Visual Studio 2008 & 2010
  3. Strongly typed HTML helpers means lambda expression based Html Helpers
  4. Templated Helpers
  5. Support for Data Annotations Attribute
  6. Client-side validation
  7. UI helpers with automatic scaffolding & customizable templates
  8. Attribute-based model validation on both client and server
  9. Overriding the HTTP Method Verb including GET, PUT, POST, and DELETE
  10. Areas for partitioning a large applications into modules
  11. Asynchronous controllers

Asp.Net MVC3

  1. Released on Jan 13, 2011
  2. Runs on .Net 4.0 and with Visual Studio 2010
  3. The Razor view engine
  4. Improved Support for Data Annotations
  5. Remote Validation
  6. Compare Attribute
  7. Sessionless Controller
  8. Child Action Output Caching
  9. Dependency Resolver
  10. Entity Framework Code First support
  11. Partial-page output caching
  12. ViewBag dynamic property for passing data from controller to view
  13. Global Action Filters
  14. Better JavaScript support with unobtrusive JavaScript, jQuery Validation, and JSON binding
  15. Use of NuGet to deliver software and manage dependencies throughout the platform
  16. Good Intellisense support for Razor into Visual Studio

Asp.Net MVC4

  1. Released on Aug 15, 2012
  2. Runs on .Net 4.0, 4.5 and with Visual Studio 2010SP1 & Visual Studio 2012
  3. ASP.NET Web API
  4. Enhancements to default project templates
  5. Mobile project template using jQuery Mobile
  6. Display Modes
  7. Task support for Asynchronous Controllers
  8. Bundling and minification
  9. Support for the Windows Azure SDK

Asp.Net MVC5

  1. Released on 17 October 2013
  2. Runs on .Net 4.5, 4.5.1 and with Visual Studio 2013
  3. One Asp.Net
  4. Asp.Net Identity
  5. ASP.NET Scaffolding
  6. Authentication filters - run prior to authorization filters in the ASP.NET MVC pipeline
  7. Bootstrap in the MVC template
  8. ASP.NET Web API2

No comments: