Forum Moderators: open
I would be very grateful if someone can point me in the right direction, as to where I can find info on how to achieve this. Also, it would be great if you could tell me what technology to use and indicate how to use it. I don't expect someone to give me a complete solution, although it would be great ;) if you have something that can achieve what I described above and feel like sharing it I would be very grateful. However, a few tips and pointers on how to achieve this and where to search for more info would be greatly appreaciated!
Thanks in advance!
/André
Now if you decided to use say asp, this method would be a bit slow and code intensive, as you would have to use fso.
1. Person logs in, selects what document will be translated.
2. Using asp, create a folder for that person with a recognizable name, and then create a sub-folder that is named notfinished, or what have you.
3. Once the person is doing the translation, each textarea would have it's own form for the saving of unfinished work.
4. Save button clicked, parse the content they have already completed, use fso to write out an xml file with a name of part-i.xml where i is the position or part of the form that they are at.
5. Once the translation is complete, user clicks process button, and the code will pull each xml file out of the notfinished folder. You can then take and rebuild the xml file on the fly, apply the xsl to the finished xml. Note, you might also want to save the finished xml file. :)
I know this is a bit long winded, and yes, really code intensive. I would opt for a .net version as you can then take advantage of the postback,caching, and multi-threading that .net offers. (Just a small bit. :-) )
Hope I have helped a bit!