Click to See Complete Forum and Search --> : How to Print the Word Document from Web Server Using ASP


tks_muthu
January 26th, 2006, 06:08 AM
Hi
How to print the ms word document from the webserver
in asp without open the document?.

plz exp

tks_muthu
January 27th, 2006, 08:07 AM
This is Script is Using to Take Printout From the Web Server.

<SCRIPT Language="VBScript">
Sub DocPrn(strFileName)
Dim WordObj
Set WordObj=CreateObject("Word.Basic")
WordObj.FileOpen(strPath)
WordObj.FilePrintDefault
WordObj.FileClose 1
WordObj.AppClose
Set WordObj = Nothing End Sub
</SCRIPT>

muthu