Integrating Google Docs-Like Editing in ASP.NET

I am exploring a solution that allows users to modify word documents and spreadsheets in a way similar to Google Docs within an ASP.NET environment. Is it feasible to embed these editing features in an ASP.NET application, and can I store the updated files on my own server instead of in a Google account?

I have implemented a local editing solution that mimics some of the functionality of Google Docs within an ASP.NET application. In my experience, integrating browser-based editing requires a third-party library, and reusable components like Office Online Server can be configured to make the integration smoother. There is a trade-off between flexibility and complexity, as local file storage demands secure handling and careful management of concurrent edits. The process is quite feasible provided that you invest time in configuring the backend and choosing compatible libraries to support the required document formats.