tags:

views:

44

answers:

1

What is .NET MVC architecture?

+1  A: 

Have a look at Model–view–controller

Model–View–Controller (MVC) is an architectural pattern used in software engineering. The pattern isolates "domain logic" (the application logic for the user) from input and presentation (GUI), permitting independent development, testing and maintenance of each.

astander