Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
For the project I'm currently developing, there's a requirement for storing documents (mainly Office documents) in the SQL-Server database.

To create a new document: The user selects a template among those offered by the server. Then the user can edit some data.

To update: The user can select a document previously saved, and then can edit it. This is actually similar to the creation process. The difference is opening a template for the former case, and opening an proviously-stored document in this case.

To save: Once the user saves the document, the browser notices the event and automatically sends the edited document to the server in order to be saved into the database.

I know the user can select the document, and automatically open whenever the browser/OS is configured to open the incoming document-type properly. So, the challenge is to store it (that means, to be sent to the server) automatically once the user saves it.

The FileUpload control is not valid for my case, since the user must interact with it, and the sending process must be transparent for the user.

So, is there any library intended for a similar purpouse?

Thanks in advance.
Posted
Comments
Solai Raja 3-Mar-15 7:13am    
there is "Binary" datatype available on the SQL Server. the document should be stored in binary type only

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900