我使用microsoft.office.interop.word
参考库从c#的整个doc页面获取文本:
string docPath = Server.MapPath("~/images/profile/" + pic);
Application app = new Application();
Document doc = app.Documents.Open(docPath);
string words = doc.Content.Text;
但是如何从doc文件中获取每页文本?