
Merges all repeating blocks that are contained in the loaded template with the System.Data.DataTable instances contained in the given System.Data.DataSet. The name of the System.Data.DataTable must match the name of the block in the template. The supported format of the repeating blocks can be found in the ASP.NET User's Guide.
[C#]
public int MergeBlocks(DataSet mergeData);
[Visual Basic]
Public Function MergeBlocks(ByVal mergeData As DataSet) As Integer
| Parameter | Description | |
| mergeData | Specifies a System.Data.DataSet that contains the merge data. |
Returns the number of successfully merged blocks.
The following example merges a block in a template.
[C#]
DataSet mergeData = new DataSet();
DataTable blockData = new DataTable("section1");
blockData.Columns.Add("name");
blockData.Columns.Add("company");
blockData.Rows.Add(new object[] { "Peter Jackson", "Text Control GmbH" });
blockData.Rows.Add(new object[] { "Jack Peterson", "The Imaging Source LLC" });
mergeData.Tables.Add(blockData);
mailMerge1.MergeBlocks(mergeData);
[Visual Basic]
Dim MergeData As New DataSet()
Dim BlockData As New DataTable("section1")
BlockData.Columns.Add("name")
BlockData.Columns.Add("company")
BlockData.Rows.Add(New Object() {"Peter Jackson", "Text Control GmbH"})
BlockData.Rows.Add(New Object() {"Jack Peterson", "The Imaging Source LLC"})
MergeData.Tables.Add(BlockData)
MailMerge1.MergeBlocks(MergeData)