Q 1.
How can I read MS-Word documents(doc and docx) from C# without MS Office installed. I was able to read unformatted text using stream reader. I think I can use OpenXML for docx. But what about doc? Is there some open source solution to handle it? Is using OLE32dll an option in unlicensed scenario? Is use of IFilter a solution? havent seen anywhere any samples using it though and also not sure about its support in windows 7 and 8.
EDIT : I stumbled upon this solution and found it acceptable for my situation
Q 2.
I need to display the doc and docx files in my Webpage as Inline or in a partial page or even iframe. How is that possible? Is COM interoperablity the only solution to it too?