0
What kind of system are u assigned?whats MVc gotta do with WCF?MVC is a
a frame work where as WCF is a technolgy.Well MVC,is any code you can organize in MVC.You keep ur database code in Models(M),Html code in Views(V)
and your business logic in Controllers(C).Before you were not having different divisons,maybe placing all code in same place.In MVC you just place according to category.
WCF,you can visit my blog:http://www.itechtutor.blogspot.com
Iam currently having a lookat WCF.If iam correct you want to develop a distributed system using ASP.net?Well u can have alook at ASP.net MVC,which u are i guess.IN WCF is logic is one server and GUI on many.Like in desktops.
0
There are no any comparison between WCF and MVC.
WCF is use to retrieve functionality from other website or application.
Where as,
ASP.NET MVC is a part of the ASP.NET Web application framework. It is
one of the two different programming models you can use to create
ASP.NET Web applications,the other being ASP.NET Web Forms.
An MVC Application is designed and implemented using the following
three attributes
Model: The model contains the core information for
an application. This includes the data and validation rules as well as
data access and aggregation logic.
View: The view encapsulates the presentation
of the application, and in ASP.NET this is typically the HTML markup.
Controller: The controller contains the
control-flow logic. It interacts with the Model and Views to control the
flow of information and execution of the application.