top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Mention the advantages and disadvantages of MVC model?

+1 vote
430 views
Mention the advantages and disadvantages of MVC model?
posted Apr 11, 2017 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

ASP.NET MVC 2 Framework is released as a part of Visual Studio 2010 and .NET Framework 4. Now it even has better model and standards than the previous version. If you want to build your applications around MVC framework, here are some pros and cons.

Here are the main advantages of building your applications using MVC framework.

MVC Framework is built upon a proven MVC design-pattern. Hence, this is not a new born baby.

One of the biggest problem in ASP.NET is HTML size of controls and view state. View state stores all the data rendered and final
HTML gets too large. If you are on a slow internet connection, you will notice load time delays. This has been taken care in MVC framework. There is no view state concept in MVC framework.

Client chasing is available now with the help of Silverlight. By integrating Silverlight, we can take advantage of it. That makes applications load faster and some of the processing can be done in web browsers.Not only the client site but the server side execution is faster too. JQuery integration with MVC makes it even better and now we can write our code that runs in the browser and takes away load from the server.

Support multiple views

Support unit testing as a part of Visual Studio 2008 and 2010

Some of the key challanges you may face when using MVC Framework are

It is not easy to understand and code when you need some customization. If you are building based on a 100% mature database, they you are golden. But if you have frequent changes in your database, you may find it annoying to keep building application again and again. It may also breake several other parts of your application.
If you are using Silver light part of it, the data access is limited to Web Services/WCF/ADO.NET Data Services. You cannot make direct calls via ADO.NET or stored procedures to a database. Also, you may find it hard to learn LINQ as a new technology to access data.

answer Apr 21, 2017 by Manikandan J
...