Developing a custom model to encapsulate a unique domain. The Model serves as the heart of the MVC application, containing… Read more MVC: Custom Model
Category: mvc
MVC: ContentResult
Returning different types of content. MVC provide flexibility when answering requests for resources by supporting different types of content. In… Read more MVC: ContentResult
MVC: C.R.U.D. Operations
Using Entity Framework to leverage CRUD operations within a website. Most tasks performed in today’s data-driven websites revolved around one… Read more MVC: C.R.U.D. Operations
MVC: Action Methods with Parameters
Passing arguments to action methods. It’s often necessary when calling an action method to pass to it variables necessary for… Read more MVC: Action Methods with Parameters
MVC: Action Methods using GET & POST
Enabling specific actions for GET and POST calls. MVC provided an elegant method to specify actions based on the type… Read more MVC: Action Methods using GET & POST