Click here to Skip to main content
16,016,088 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to read the content of a .doc or .docs file and display the content at webpage in asp.net web application?
Posted
Comments
bbirajdar 29-Oct-12 2:54am    
What is a .docs file ? How do you create this type of files ?
Samuel-Summers 2-Jul-15 4:16am    
By ".docs" I believe you meant to say ".docx", right?
Anyway the problem is that currently browsers cannot render the words documents so you'll have to convert your file's content into a format that a browsers can render.
For example HTML or maybe PDF (because all modern browsers are capable of rendering them) or maybe an image file (so you would get a preview document effect).

Now there are few libraries capable of doing this for you, I'm familiar with this C# library for word documents. It can process (both open and convert) the .doc files in C# but also it can manipulate with .docx files in C# as well in the same manner.
What you would need to do is just open your Word file with C# and then do a straightforward conversion of that Word file into a HTML content in .NET and then just write out that HTML content to response's output stream.

I hope this helps.

1 solution

hi check out the following links
link1[^]
link2[^]
link3[^]
link4[^]
 
Share this answer
 

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