这里有个例子
假如word文件保存在"D:\mydoc.doc"
用这个语句就可以打开word文件:response.redirect("D:\mydoc.doc")或者用这个 Response.Write("<s" & "cript language=JavaScript> window.open('D:\mydoc.doc','','status=yes,location=yes,toolbar=yes,resizable=yes,directories=yes,menubar=yes')</scrip" & "t>")

解决方案 »

  1.   

    http://www.microsoft.com/china/msdn/library/dnexcl2k2/html/odc_offcs.asp#odc_offcs_wd1
      

  2.   

    需要
    Microsoft.Office.Interop.Word.dll 
    Office.dll Application app = new Application(); 
    object template=Missing.Value;
    object newTemplate=Missing.Value;
    object documentType=Missing.Value;
    object visible=true;
    _Document doc = app.Documents.Add( ref template,ref newTemplate,ref documentType,ref visible);
      

  3.   

    http://www.yesky.com/20030208/1651044.shtml