SharePoint is Microsoftβs Swiss Army knife for collaboration, document management, and business process automation.
Whether you love it, tolerate it, or avoid it like the plague, SharePoint has been a in enterprise software for over two decades.
π History of SharePoint
SharePoint was born in 2001 as a glorified document repository and collaboration tool.
Over the years, it evolved into a full-fledged content management system, enterprise intranet, and business automation platform.
π Table of Releases
Version | Release Year | Key Features |
---|---|---|
SharePoint 2001 | 2001 | Basic document management |
SharePoint 2003 | 2003 | Web-based collaboration, document libraries |
SharePoint 2007 | 2007 | Workflows, improved UI, better integration with Office |
SharePoint 2010 | 2010 | Sandboxed solutions, Business Connectivity Services (BCS) |
SharePoint 2013 | 2013 | App model, improved search, cloud integration |
SharePoint 2016 | 2016 | Hybrid cloud features, better performance |
SharePoint 2019 | 2019 | Modern UI, deeper integration with OneDrive and Teams |
SharePoint Online | Ongoing | Cloud-native, Microsoft 365 integration, Graph API support |
π― Why Use SharePoint? (Motivation)
SharePoint is used by organizations to:
- Centralize document storage
- Manage permissions and compliance
- Automate business processes
- Create intranets and team sites
- Enable secure collaboration across teams
π Key Features in Different SharePoint Versions
Feature | SharePoint 2013 | SharePoint 2016 | SharePoint 2019 | SharePoint Online |
---|---|---|---|---|
On-Premises Support | β | β | β | β |
Cloud Integration | β | β | β | β |
Modern UI | β | β | β | β |
Microsoft 365 Integration | β | β | β | β |
AI-Powered Search | β | β | β | β |
π Comparing SharePoint to Alternatives
Feature | SharePoint | Google Drive | Confluence | Dropbox |
---|---|---|---|---|
Document Management | β | β | β | β |
Business Workflows | β | β | β | β |
Permissions & Compliance | β | β | β | β |
Custom Apps & Extensions | β | β | β | β |
SharePoint is a strong choice for companies that need secure collaboration, business workflows, and deep Microsoft 365 integration.
If you are already in deep in Microsoft 365, Sharepoint is extra compelling..
But if your company is running on Dropbox or Google Drive, you will not get the same level of Microsoft eco-system integration .
For really simple sharing- arguably with less of a learning curve: tools like Google Drive or Dropbox might be more user-friendly.
π The Microsoft Graph API
The Graph API is a RESTful API that allows developers to interact with SharePoint Online (and other Microsoft 365 services). You can use it to:
- Manage Files & Folders: Upload, download, and organize files.
- Automate Workflows: Trigger events when files change.
- Query Lists & Data: Fetch and update SharePoint lists.
- User & Group Management: Control permissions programmatically.
Example: Retrieving SharePoint Files Using Graph API
|
|
β Examples Where SharePoint is a Good Solution
- Company Intranet
- HR Document Storage
- Team Collaboration Sites
- Workflow Automation for Approvals
- Enterprise Content Management
- Secure File Sharing with Permissions
- Compliance and Audit Logging
- Knowledge Management Portals
- Departmental Project Management
- Hybrid Cloud and On-Prem Document Syncing
β 10 Examples Where SharePoint is NOT the Best Choice
- Real-Time Collaborative Editing (Google Docs is better)
- Transactional Database Storage (Use SQL Server instead)
- High-Performance Web Applications
- Custom-Built SaaS Products
- Public-Facing Websites
- API-Heavy Workflows (Other services provide faster APIs)
- Complex Business Logic Processing
- Low-Code / No-Code Apps (Power Apps may be better)
- High-Speed Data Processing Needs
- Ad-Hoc Cloud Storage (Google Drive or OneDrive is simpler)
π Security & Authentication in SharePoint
Authentication Options
- Azure AD Authentication (for cloud-based SharePoint Online)
- Windows Authentication (for on-premises SharePoint)
- OAuth 2.0 & OpenID Connect (for API access)
- SAML-Based Authentication (for enterprise integrations)
Can You Use OAuth with SharePoint?
Yes! SharePoint Online supports OAuth 2.0 via Microsoft Graph API. This allows secure, token-based authentication for apps accessing SharePoint resources.
Example: Authenticating via OAuth 2.0
|
|
So what does this have to do with Asp.net?
- Take a deep look at Sharepoint and Graph API
- If you have a Corporate App: (sharepoint is not so great for public websites)
- Really ask yourself- soul searching- can you replace some of your boilerplate code with Sharepoint?
- The first time I did this (over 10 years ago), I was able to give the users a sharepoint site to administer the data we were collecting.
- I then made a public website - that could connect to that same data
- the best of both worlds
- Sharepoint is a powerful tool to know what it can do , and how it can best fit into your cloud application design