Is there any document management component (commercial or open source) for .NET?

We are creating a .NET web application (case management) and one of the requirements it must have a document management system to store and manage the document, and at the same time it can be used outside of this application like intranet, instead of reinventing wheel for this, is there any document management system component that can be integrated with .NET? I preferred commercial, but if there is open source, I'm more than happy.

thank

+2


source to share


2 answers


Have you encountered Sharepoint? Maybe its the OTT way for what you need.

Also see this question: -



.NET Document Management System

+1


source


Have you thought of a subversion based solution . You can use SharpSVN (.NET) to build your own document management based on this. Benefits:



  • Rights can be managed in SVN for access rights
  • You can attach any information you want to documents means SVN properties.
  • It is completely open source and actively used / supported
  • Links can be created using "external"
  • You can easily create baselines for your documents by branching / tagging
  • Subversion does binary diffs, so you minimize your backup overhead.
  • Finding documents can be a bit slow, but usually users want the latest version of the document and this can be solved using local copy or caching.
+1


source







All Articles