Skip to main content

Model-view-controller - Wikipedia, the free encyclopedia

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Related Lists

Bookmark History

Saved by 41 people (-15 private), first by anonymouse user on 2006-04-24


Public Comment

on 2008-02-01 by bgtasoft

Frameworks ASP.NET para MVC

Public Sticky notes

resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.

Highlighted by rainymina

resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other

Highlighted by rainymina

resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.

Highlighted by rainymina

resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.

Highlighted by rainymina

resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.

Highlighted by rainymina

resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.

Highlighted by rainymina

isolates

Highlighted by melofab

Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. I

Highlighted by praphulcs

the model represents the information (the data) of the application

Highlighted by melofab

n MVC, the model represents the information (the data) of the application and the business rules used to manipulate the data, the view corresponds to elements of the user interface such as text, checkbox items, and so forth, and the controller manages details involving the communication to the model of user actions such as keystrokes and mouse movements.

Highlighted by praphulcs

In complex computer applications that present a large amount of data to the user, a developer often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface will not affect data handling, and that the data can be reorganized without changing the user interface.

Highlighted by slatrat

It is common to split an application into separate layers that run on different computers: presentation (UI), domain logic, and data access. In MVC the presentation layer is further separated into view and controller.

Highlighted by praphulcs

It is common to split an application into separate layers: presentation (UI), domain logic, and data access. In MVC the presentation layer is further separated into view and controller. MVC encompasses more of the architecture of an application than is typical for a design pattern.

Highlighted by slatrat

MVC is often seen in web applications, where the view is the actual HTML page, and the controller is the code that gathers dynamic data and generates the content within the HTML. Finally, the model is represented by the actual content, usually stored in a database or in XML nodes, and the business rules that transform that content based on user actions.

Highlighted by praphulcs

It is common to split an application into separate layers: presentation (UI), domain logic, and data access.

Highlighted by phil_guth

In MVC the presentation layer is further separated into view and controller. MVC encompasses more of the architecture of an application than is typical for a design pattern.

Highlighted by phil_guth

The domain-specific representation of the information that the application operates. Domain logic adds meaning to raw data (e.g., calculating whether today is the user's birthday, or the totals, taxes, and shipping charges for shopping cart items).
Many applications use a persistent storage mechanism (such as a database) to store data. MVC does not specifically mention the data access layer because it is understood to be underneath or encapsulated by the Model.

Highlighted by slatrat

begins

Highlighted by hasanshan

MVC is often seen in web applications, where the view is the actual HTML page, and the controller is the code that gathers dynamic data and generates the content within the HTML. Finally, the model is represented by the actual content, usually stored in a database or XML files.

Highlighted by slatrat

.NET

Highlighted by bgtasoft