Transfer Word Document Contents To Web Environment On Server Side Using C# Asp.net
We have some contents in Ms Word .docx formats, prepared by our customers. These documents may have equations, images, etc. We want to transfer these contents to our web environmen
Solution 1:
This is a delicate matter. I was facing the same problem as doc has a lot of style tags. If you notice, try to share a url (which has word doc content) on facebook, then in the description/summary of url, the unwanted tags used to come :) So I guess the issue is persistent there too. I would suggest, go through the basics of Information Retrieval and try to intelligently strip the style tags. You will be required to write most of your stripping code with regular expressions
Post a Comment for "Transfer Word Document Contents To Web Environment On Server Side Using C# Asp.net"