L leeeeleeee Unregistered / Unconfirmed GUEST, unregistred user! 2003-11-12 #1 在客户端可以通过CreateObject("word.basic")等方法建立 在服务器中就不行吗? 请教在服务器端打开MS word的方法。我要在服务器中加内容!
N natural Unregistered / Unconfirmed GUEST, unregistred user! 2003-11-14 #2 using System.Diagnostics; Process ps=new Process(); ps.StartInfo.FileName=@"D:/Microsoft Office/Office/winword.exe"; ps.Start();
using System.Diagnostics; Process ps=new Process(); ps.StartInfo.FileName=@"D:/Microsoft Office/Office/winword.exe"; ps.Start();
7 7syw Unregistered / Unconfirmed GUEST, unregistred user! 2003-11-14 #3 <% set wd =server.CreateObject("word.basic") ........................... %>
T tooper Unregistered / Unconfirmed GUEST, unregistred user! 2003-11-14 #4 想不通为什么要在服务器端打开Word,给我的感觉好像打不开,即使打开了也会把你的服务器搞爆!ASP的组件好像是进程内组件,Word的情况呢?