Hi,
I've created a mailmerge field with some text prefix.
e.g. Date: «Date»
When I try to replace the merge field with some data from the database, the text prefix is gone.
e.g. builder.MoveToMergeField("Date");
builder.Write(dr["date"].ToString());
The output is just the value of date whereas I'd like the output to be
Date:
How to make sure the text prefix is retained ?
Thanks,
Kiran.