What is the difference between an ASP.NET site and a SharePoint site?

I am new to SharePoint development. I wanted to know what is the difference between a SharePoint site and a .NET site. When to use SharePoint and .NET?

+4
source share
3 answers

SharePoint is a massive "application platform" - an intranet portal, an external website, a collaboration tool, a business intelligence agent, a content management system, a document storage system, etc. that uses ASP.NET . (SP comes with hundreds, if not thousands, of ASPX pages.)

On the other hand, for a simple .NET site, you do not need to install SP: only IIS with any required ASP.NET extensions.

You use SP when you need it and / or are encouraged to use it. This is good - but usually not teriffic - despite what it does (and that's a lot). But he is big and expensive. (Microsoft recommends "something like at least 7 servers for the" main "SP farm, but can work as a single instance.)

What is it. Actually.


As others noted, the SharePoint Foundation is โ€œfreeโ€ because there is no SharePoint CAL or SharePoint card. However, do not reduce the cost of any additional requirements.

+7
source

SharePoint is a website-based collaboration tool created using the ASP.NET..NET framework (and ASP.NET), a set of tools that allows you to create applications / websites and much more.

You can create on top of SharePoint / Dynamics CRM 2011 using the base application as a platform that provides benefits such as security, logging, workflow, saving, file storage, notification, etc.

+4
source

SharePoint is Microsoft's corporate information portal that can be configured to run intranet, extranet, and Internet sites. Microsoft Office SharePoint Server 2007 enables people, teams, and professionals to connect and collaborate. The SharePoint Enterprise Portal consists of SharePoint Portal and Windows SharePoint Services, while SharePoint is based on WSS. WSS is commonly used by small teams, projects, and companies. SharePoint Server is designed for individuals, teams, and projects on a medium to large-scale enterprise portal.

With ASP.net, you have a very well-documented, fierce, mature and stable platform with a good API. ASP.net is more reliable, easier to customize the look. Pages run faster in native ASP.NET rather than hosted in SharePoint. Server requirements are reduced because SharePoint services are down / not required. Simple development and deployment model and debugging (no deployment of .webpart and GAC versions required).

+2
source

Source: https://habr.com/ru/post/1389413/


All Articles