views:

521

answers:

1

I want to build a feature like "Print List" on WSS 3.0, and I planned to convert List data into Word document then print it. Is there any way to merge List items into Word 2003 document, I Googled some solutions but they only work with Word 2007.

A: 

You would need to write a custom solution that loops through the list items and generates WordML. This is the XML format for Word 2003. Here is a guide that can get you started.

Once the XML file has been generated you can offer it for download using standard ASP.NET methods. Here is an example that should work. Alternatively you could store the result in a document library and point users to download it from there.

Alex Angas
Thank you very much Alex
Nam
Glad to help! If this answer solved your problem please click the big Tick icon to mark it as answered. Or if it just helped click the Upvote icon.
Alex Angas