How to implement Word Automation in ASP.NET?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default How to implement Word Automation in ASP.NET?

    I have just started to rewrite an application using ASP.NET. One of
    the main features of the application is automated letter production.
    In the old application this had been accomplished using Word
    Automation and mail merge. There doesn't seem to be very much
    information on the net on how to accomplish this in ASP.NET. Can
    anyone point me in the right direction?

    Rachel.
    Rachel Guest

  2. Similar Questions and Discussions

    1. Word Automation !!
      I am trying to create an instance of a word document via asp. I keep getting this error: Server object, ASP 0178 (0x80070005) The call to...
    2. Web automation
      Hello, I want to fill out and submit Html form (not manually) using Perl or other scripting language if necessary. Html form is composed of...
    3. word automation in asp.net
      I have just started to rewrite an application using ASP.NET. One of the main features of the application is automated letter production. In the...
    4. Server-Side Word Automation w/ASP.NET
      For anyone who needs to know this in the futuer, look at the following web-pages on Microsofts support site: HOWTO: Configure Office Applications...
    5. Win 32 Ole, Word Automation
      Hi Im having problems putting pictures into my word document. I can get pictures in but they all appear ontop of each other as oppose to where...
  3. #2

    Default Re: How to implement Word Automation in ASP.NET?

    From what I saw so far Word is still a COM based application so we cannot
    merge from a dataset. So, what I do is generate the text file first (with
    Dataset or Datareader), then I call a function to merge the template word
    document (with fields already added to it), and finally I save the new
    merged document to disk. Don't forget to make a reference to Word in your
    ..Net project. Then it's practically the same old story.
    It seems that you can use XML with Word 2003...

    "Rachel" <rachel_c@rocketmail.com> wrote in message
    news:72e3a25f.0308011102.7f3da5de@posting.google.c om...
    > I have just started to rewrite an application using ASP.NET. One of
    > the main features of the application is automated letter production.
    > In the old application this had been accomplished using Word
    > Automation and mail merge. There doesn't seem to be very much
    > information on the net on how to accomplish this in ASP.NET. Can
    > anyone point me in the right direction?
    >
    > Rachel.

    abacnet Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139