how to view the doc and pdf file in browser
how to view the doc and pdf file in web browser without using (using Microsoft.Office.Interop.Word) in asp.net C# with image and if table foemate is available in doc file or pdf
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vinodh NarayananPosted Dec 12, 2014, 6:29 AM
Lim ShyanPosted Nov 20, 2014, 11:08 AM
If your goal is to view DOC and PDF files as images in a Web Page, you might need to use a toolkit (Leadtools) that supports loading document formats. For more information you can refer to this page:
https://www.leadtools.com/help/leadtools/v18/dh/co/leadtools.codecs~leadtools.codecs.rastercodecs~load.html
Edda BrownPosted Aug 14, 2014, 2:05 AM
Streaming a file directly to the Response will work but only for PDFs, browsers cannot render DOCs. So what you can try is to manipulate with DOC files in .NET in order to transform (convert) those Word documents to PDFs in C# and then use the same approach that Satyapriya mentioned.
Satyapriya NayakPosted Jan 2, 2014, 6:52 AM