What are web parts?
What are the benefits and drawbacks to using them? Is there a difference between web parts in ASP MVC and Sharepoint?
What are web parts?
What are the benefits and drawbacks to using them? Is there a difference between web parts in ASP MVC and Sharepoint?
Web Parts are part of classic ASP.NET WebForms. They are special type of user controls. SharePoint being built with classic WebForms it uses Web Parts extensively to add functionality.
Web Parts are not used in ASP.NET MVC. Remember there's no ViewState nor Postback concepts in ASP.NET MVC. Similar functionality could be achieved with view models and partial views.