在ASP.NET中使用Microsoft Word文档    tanrui(翻译)http://www.csdn.net/Develop/article/20%5C20901.shtm

解决方案 »

  1.   

    Automate Word from Visual Basic .NET to Create a New Documenthttp://support.microsoft.com/?kbid=316383 oWord = CreateObject("Word.Application")  //建立对像
            oWord.Visible = True  //可见
            oDoc = oWord.Documents.Add          'Insert a paragraph at the beginning of the document.
            oPara1 = oDoc.Content.Paragraphs.Add
            oPara1.Range.Text = "Heading 1"  //加内容。
            oPara1.Range.Font.Bold = True
    取出range 对像的text 就可以了
      

  2.   

    发邮件给我,我给你解决方案[email protected]