You will have to use OpenXML technology to manipulate the word document and insert dynamic content into the word document.
I assume that you are using docx word documents for this purpose. The docx file is actually a zipped file which has many xml files, which inturn can be manipulated using the OpenXML API using c#. In your case, the contents of the word will be in an xml called "document.xml". You will have to read this XML and replace the <> placeholder with your data from database.
I have written 2 articles (with source code) with respect to these concepts. You can use the following links which can give a heads-up.
http://www.codeproject.com/KB/office/Word_2007_Footnote.aspx
http://www.codeproject.com/KB/office/Word_2007_Images.aspx
Though it might not give you the exact solution to the specific problem you have, you can use this to start off with something (like how to read the document.xml using OpenXML API and c#), and then you can work on your own to fix your problem.
EDIT: Did not notice you mentioned .doc file. I saw the OpenXML tag to it, hence replied. I guess this solution applies only if the document is .docx.
.docextension? – amurra Jan 16 '12 at 11:33