Microsoft Word Documents from ASP.NET
http://www.codeproject.com/useritems/wordapplication.asp?target=word

解决方案 »

  1.   

    http://support.microsoft.com/?kbid=303296
      

  2.   

    其实说明白一点就是如何使用com对象和VBA,在WORD中录制宏你会吧,转成C#就行了。如果不会可以到www.codeproject.com找一下 word你会有很大的收获的
      

  3.   

    各位!我的Visual C#.Net中的.COM组件上怎么没有microsoft word对象库呀?
      

  4.   

    需要
    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);http://www.yesky.com/20030208/1651044.shtml
      

  5.   

    还有在.NET组件中怎么没有winwordcontrol.dll 库?