i want to display a.doc file in asp page. please tell me are it is possible in via binaryread or any other method. am i display 1st page of doc file as image. please help in that
please help Display a.doc file in asp
Collapse
X
-
the procedure below would be invalid...
this is because word are not a raw text format
so the code below would return an unreadable string.
dim fso
dim wordfile
set fso=Server.crea teObject("Scrip ting.FileSystem Object")
wordfile= fso.opentextfil e(path).readall
set fso=nothing
Comment
-
ahh... since you mean that the file was a in doc format... i agree with padmakar
but make sure the mime type was set properly,, because if you use iframe improperly ... mostlikely ... it would envoke a download instead of displaying your document.Comment
Comment