Edit MS Word in a rich text editor on the web

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Edit MS Word in a rich text editor on the web

    Hello developers. We have developed a document management system for a client.
    In the last minute of the project, he tacked on a requirement. He would like to
    edit a MS Word document that is stored on the server in a web page (much like
    editing HTML content with eWebEdit Pro or soEditor) - not download, edit and
    upload to the document management system.

    We have racked our brains out trying to figure exactly how to do such a task.
    One option is to have CFMX7 open the word doc with a command line option in
    Word and export to HTML. Then, port that HTML to a rich text editor. The finish
    and submit would upload the HTML content to the server and have CF use another
    MS Word command line option to port the data on the file saved on the server.

    Does anyone have such a idea? Has anyone accomplished something like this?

    CUA web dev Guest

  2. Similar Questions and Discussions

    1. Rich Text Editor
      Hi! I know that exists many rich text editor on internet. But i want lear how to do it. I learn to do, but i?m not getting to aply the bold...
    2. Rich Text Editor Options
      I am working on a project that needs a Rich-Text Editor with ability to insert tables, images, and more complex editing features such as what...
    3. superscript in Rich text Editor
      Help!!!:brokenheart; Is there a way to add superscript/subscript in rich text editor? Current editor does not support this. Can any one give me...
    4. Rich Text Editor in DW ?
      Looking for a way to edit a MySQL db text field as RTF...is there an RTE extension / add in / whatever that will allow me to do that ? Thanks, Nick
    5. OT: Rich Text Box editor (IE object)
      Hi, I am looking for a way to have a textbox, but with some rich text box type properties. Most importently, it should let a user create...
  3. #2

    Default Re: Edit MS Word in a rich text editor on the web

    It really depends on how complicated the word document is?

    If it is relatively simple, then my advice to you is to keep nearly all the
    actual text in a db and an .rtf template with unique handles in it. Then when
    he makes changes you can edit the information in the db. Then to output it use
    cffile to read the doc and then use Replace() to swap the unique handle for the
    text in the db, then cfcontent to output the word doc!!!

    Make sense?

    Stressed_Simon 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