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 20
(All My Notes are attributed/sourced from the Resources directly preceding them.)
Summary
MVC is one of the more efficient ways of designing Web Sites
Model - This part contains all the objects in our application, including their properties and methods
View - This part is the html portion of the application that the user will interact with to use our application
Controller - This part handles all the user input and tells the app what to do with user requests
ASP.Net has Tag helpers that work with c# similar to the tags you see in HTML
Bootstrap is a framework used to help build web pages
Resources
Azure DevOps documentation
Author: Microsoft Docs
Article Source
Resources
Learn Basics Of MVC Architecture
Author: Padmalatha Dronamraju
Article Source
Resources
Tag Helpers in ASP.NET Core
Author: Rick Anderson
Article Source
Resources
Bootstrap
Author: Bootstrap Docs
Article Source
Resources
Learn Bootstrap 4 for free
Author: Scrimba
Article Source
<– Back