View On GitHub
reading-notes
Reading Notes for Codefellows!
Project maintained by
AlanYHung
Hosted on GitHub Pages — Theme by
mattgraham
Code 401 ASP.NET
Reading 22
(All My Notes are attributed/sourced from the Resources directly preceding them.)
Summary
MVC Views in c# are a way to organize how you want to handle the organization of data presented to your user
Routes follow the folder organization within your c# project such as a the Home route would have a index file under a /Views/Home folder.
Due to the organization of views it is easier to update and change when you need to update a view
It is possible to pass data to and from your views via the view model
There are 2 types of model data that a view can have
Weakly Typed: Data you don’t declare the types of
Strong Typed: Data you do declare the types of
Resources
Views in ASP.NET Core MVC
Author: Microsoft Docs
Article Source
Resources
4 Ways To Create Form In ASP.NET MVC
Author: www.completecsharptutorial.com
Article Source
<– Back