I have a .net web application written in C# that is only used on an Intranet.
I have a page on which I need to create a Word document, modify some of the text dynamically, save the Word document and send it as an email attachment.
I tried doing it using Word Automation and, although it worked on my development machine, it doesn't work on a server when other users try to use it.
So ... how to create a Word document on the fly, save it and use it as an email attachment? I have searched and people say 'use open xml' ... but (apart from the fact I have no idea how to do it) would this allow me to create and save a Word document that will be able to be opened by people using old copies of Word (say as far back as Word 97).
And I keep reading the words 'Sharepoint Server' but, again, have no idea what/how this might fit in with a .net web application.
Can anyone point me in the right direction please?