Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET vs SharePoint - which one is better for web developers?

Tags:

I have less information about share point (only basic info). Microsoft released SharePoint for web developers. Microsoft also said SharePoint has compatibility with other .NET technologies like Workflow Foundation, WCF, etc and it's easy way to develop web sites and web apps.

Also as I know ASP.NET has compatibility with .NET technologies and C#. And it easy for every one whom at least work with C# or VB.NET.

So with these advantages of SharePoint:

  1. Why we must use asp.net instead SharePoint?
  2. Why Microsoft develops ASP.NET (new version 4)?
  3. What's major reason to chose one of these?
  4. Is really developing base-on share-point faster and easier than asp.net?
like image 673
Rev Avatar asked Nov 21 '10 06:11

Rev


People also ask

Is a SharePoint developer a .NET developer?

ASP.NET and Sharepoint are 2 'different' technologies. Sharepoint is mostly built with ASP.NET, and delivers ASP.NET pages to a user. You can use either VB.NET or C# with Sharepoint. In my opinion, Sharepoint development is only quicker if you are planning on using it's in-built lists, user management etc.

Is ASP.NET good for web development?

As a whole, ASP.NET is a great framework to use when developing web sites and web applications. It is reliable, fast, easy to use, free and widely known. ASP.NET gives you full control of your development and can be used on any project, big or small.

Is ASP.NET developer in demand?

The ASP.NET environment is phenomenal; developers can create powerful applications faster than those built with JavaScript or PHP. It is an open-source cross-platform with incredible technical support. . NET Core developers are in high demand in 2021, and we don't see the trend changing anytime soon.

Is ASP.NET still relevant 2020?

After a strong legacy of over two decades now, the net development services still remain relevant. As per a report by w3techs, ASP.NET is still used by 7.9% of all the websites whose server-side programming languages are known.


1 Answers

SharePoint is an Application that sits on top of ASP.net (3.5 SP1 in the current SharePoint 2010 - No ASP.net 4.0 will be possible). They do override a lot of ASP.net built-in functionality (they have their own .aspx Parser and Virtual Path Provider for example).

With ASP.net you have a very well documented, battle-hardened, mature and stable platform with a good API.

With SharePoint you gain a poorly documented, bug-ridden, very limited application that handles a lot of features that you would have to code yourself (e.g., User Profile Management, Document Organization and Versioning and Social Features like Commenting and Tagging), although for the most point SharePoint handles them really poorly and does not allow you to override them, which means that you spend a lot of time rewriting them anyway and trying to integrate them back.

Basically my advice as a SharePoint developer since 2006: Use it when you absolutely have to, avoid it whenever you can and stay with just ASP.net.

SharePoint is good as a simple document management and very light social system. You can quickly customize smaller parts of it and add a lot of value to your company. But in the moment you need something that even only slightly different from what Microsoft envisions, you hit a wall that you can't pass. It's great for what it does, nothing more, nothing less.

like image 54
Michael Stum Avatar answered Sep 21 '22 06:09

Michael Stum