MVC - View
12 February 2008This post will briefly explain MVC view. I assume that you have some basic knowledge about MVC.
There are many ways in which data can be accepted from the user and presented to the user in an application where data has to be accepted from the user, has to be updated/modified and has to presented back in a proper way to the user again.
The component View consists of a presentation logic. It presents the data contained in the Model to the user. Further, it also allows the user to interact with the system and notifies Controller about the users actions.
As the component Model is different from the component View, there can be multiple Views for the same Model (data). With component View you can get separation of presentation from the content.
In order to understand the Model 2 MVC architecture, let’s see a simple example of online website for shopping books.
In the next post, I will take an example for better understanding. Do follow that one.
Related Posts:
Top Of Page | Trackback
If you found this page useful, consider linking to it. Simply copy and paste the code below into your web site.
It will look like this: MVC - View