I'm getting text from whole pages of doc file in c# using microsoft.office.interop.word
reference library:
string docPath = Server.MapPath("~/images/profile/" + pic);
Application app = new Application();
Document doc = app.Documents.Open(docPath);
string words = doc.Content.Text;
But how can I get text per page from doc file?