ASP Module 2
Getting Started with MVC
Getting Started with MVC
  • Overview
    • Introduction to MVC
  • Understanding MVC
    • Creating an MVC app
    • Add a controller
      • Understand HTTP endpoint
      • Understand basic routing
    • Add a view
      • Understanding shared layouts
      • Setting view title
      • Passing data to view
  • Exercise
    • Add two numbers
      • Using Model
  • Display Movies
    • Add a model
      • Scaffold the index view
      • Scaffold the movies controller
      • Add temp movie data
      • Pass data to index view
    • Implement actions
      • The first create action
      • The second create action
      • The details action method
      • Edit & Delete actions
      • Asynchronous actions
    • Repo link
Powered by GitBook
On this page
  • Project Repo
  • How to checkout initial version
  1. Display Movies

Repo link

PreviousAsynchronous actions

Last updated 2 years ago

Project Repo

The initial commit will give you the project as it looks post the discussion on MVC basics:

  • HelloWorldController and Views

  • Simple Movie model

  • Movie CRUD pages

  • Movie FakeContext (in-memory collection)

  • MovieController for CRUD using a fake context object

How to checkout initial version

git checkout master -531b454b010178e24f09bd4e07146817ab656a29
GitHub - raviramorg/MvcMovie: For learning ASP.NET CoreGitHub
Logo