You can read the content of a word docs as....
Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application();
string path = @"E:\Res.docx";
object file = path;
object nullobj = System.Reflection.Missing.Value;
Document doc = wordApp.Documents.Open(ref file, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj);
string result = doc.Content.Text.Trim();
doc.Close();
Naraayanan, if this helps please login to Mark As Answer. | Alert Moderator