MVC vs 3 tire
-
Sunday, May 16, 2010 5:18 PM
hello
I want to know what is the difference b/w MVC vs 3 tire (UI,BL,DAL)
I have been reading MVC but i did not fine simple example of MVC can some one share that
It's Me
All Replies
-
Sunday, May 16, 2010 5:50 PM
Hi,
N-tier is software design approach where application is divided into three layers UI(Presentation Layer), Business Layer and Data Access Layers. The UI layer will user interface elements such as web pages, script files and its related classes. The business layer usually have business logic components to be used by UI layer. The data access layer will have components to read/write database and called by business layer.
MVC is a framework methodology that divides an application's implementation into three component roles: models, views, and controllers.
MVC Pattern basically used deveolop web based development and there is a MVC framework for ASP.NET.
ASP.NET MVC. You can find sample applications using asp.net mvc framework here.
- Marked As Answer by Liliane TengModerator Friday, May 21, 2010 10:01 AM
-
Sunday, May 16, 2010 6:06 PM
Hello
Many thanks for reply, may I have MVC C# windows example .
I am bit confuse with MVC ,
i belive view talk to controller, and controller talk to view .
1) so who update the view is it model or controller .
It's Me -
Sunday, May 16, 2010 6:20 PM
Hi,
From this MVC architecture diagram, Controller manipulates the Model and Model updates the View.
You can download a sample MVC application for WinForm in the following links.
Looking for a MVC Sample for WinForms. Click on Example link to download a sample source code(From Mr. FryHard reply).
- Marked As Answer by Liliane TengModerator Friday, May 21, 2010 10:01 AM
-
Sunday, May 16, 2010 6:27 PM
Hi,
Also repost at http://forums.asp.net/ where you will get better and quicker answers from related experts.
Thank you.
WHAT'S NEW IN THE .NET FRAMEWORK 4:
Article: Comparison of parallel and sequential computing in .NET Framework -
Tuesday, May 18, 2010 5:44 AMModerator
Hello It_s Meee,
Thanks for your post.
Check the following examples, hope them helpful.
(1) http://www.codeproject.com/KB/cs/model_view_controller.aspx
(Model View Controller (MVC) Using C#, Delegates and Events in .NET)
This article explains the MVC pattern's basics and clears the big implementation
question up with a decent practical example written in C#.(2)http://www.c-sharpcorner.com/uploadfile/rmcochran/mvc_intro12122005162329pm/mvc_intro.aspx
(Introduction to Model View Control (MVC) Pattern using C#)Best regards,
Liliane
Please mark the replies as answers if they help and unmark them if they provide no help. Thanks- Marked As Answer by Liliane TengModerator Friday, May 21, 2010 10:01 AM

