How do we open a Word document on a webpage ...i think this is been done in yahoo mail page...please somone reply
Printable View
How do we open a Word document on a webpage ...i think this is been done in yahoo mail page...please somone reply
<%
set word= Server.CreateObject("Word.Application")
'Opening the document read-only
word.Documents.Open "c:\mydoc.doc",False,True
set w_doc=word.ActiveDocument
%>
The code that you had sent was sufficient but i would like to create a new word documet on the browser and save it to the server path.
Can you please give me the full code....