Two tables are combined when converted to Word format

When publishing two distinct tables to word format, tables are combined. Attached is the Word document created and below is the HTML used. I am currently using Aspose.Words.dll v9.0.0.0

<table class="c_style000000000000000000000000000" border="1" cellspacing="1" cellpadding="1" width="100%">
    <thead>
        <tr>
            <th valign="top" width="25%">Date</th>
            <th valign="top" width="25%">Team Member</th>
            <th valign="top" width="25%">Activity</th>
            <th valign="top" width="25%">Description</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
        </tr>
        <tr>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
        </tr>
        <tr>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
            <td valign="top" width="25%">xxxx</td>
        </tr>
    </tbody>
</table>
<br />
<table class="c_style000000000000000000000000000" border="1" cellspacing="1" cellpadding="1" width="100%">
    <thead>
        <tr>
            <th valign="top" width="66%">Activity</th>
            <th valign="top" width="34%">Notes</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td valign="top" width="66%">xxxx</td>
            <td valign="top" width="34%">xxxx</td>
        </tr>
    </tbody>
</table>
<br />
<br />

Hi

Thank you for reporting this problem to us. I managed to reproduce it on my side. Your request has been linked to the appropriate issue. You will be notified as soon as it is resolved.
I can suggest you a very simple workaround of this issue, you can just insert an empty paragraph between tables instead of inserting BR. Please see the following HTML pseudo-code:

<table>
............
</table>
<p> </p>
<table>
............
</table>

Hope this helps.
Best regards.

We are unable to use this workaround, since the html is dynamically generated based on the user input. It would require a full rewrite of existing functionality. Please let me know when can we expect this issue to be resolved, since we are coming close to the end of our development cycle.

Hi

Thanks for your request. This issue is already resolved in the current codebase. The fix will be included into the next hotfix, which will be released within 4-5 weeks. You will be notified.
Best regards,

The issues you have found earlier (filed as 15900) have been fixed in this update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.