Hi
Is there any specific reason you need to use word? You could try use something like this:
<%
docpath = "C:\doc1.doc"
set word = createobject("Word.Application")
text = word.documents.open(docpath).Content.Text
word.quit
response.write(text)
%>
However, see Microsoft Knowledge Base Article - 224338.
|