S
SK
I want to use an Html file as Data Source for mail merge.
The documentation says :
(http://office.microsoft.com/en-us/word/HP051875951033.aspx)
You can use an HTMLfile that has a single table. The first row of the table
must contain column names and the other rows must contain data.
I tried using simple table like this:
<html>
<body>
<table>
<tr>
<td>Name</td><td>Address</td><td>City</td>
</tr>
<tr>
<td>N</td><td>A</td><td>C</td>
</tr>
</table>
</body>
</html>
I accessed it though a web URl like : http://localhost/web/test.html
if I give this URL as Data Source, it gives error:
Document name or path is invalid.
But if I browse it, I can see the file intact.
Can somebody please provide a simple sample for this?
Thanks.!
The documentation says :
(http://office.microsoft.com/en-us/word/HP051875951033.aspx)
You can use an HTMLfile that has a single table. The first row of the table
must contain column names and the other rows must contain data.
I tried using simple table like this:
<html>
<body>
<table>
<tr>
<td>Name</td><td>Address</td><td>City</td>
</tr>
<tr>
<td>N</td><td>A</td><td>C</td>
</tr>
</table>
</body>
</html>
I accessed it though a web URl like : http://localhost/web/test.html
if I give this URL as Data Source, it gives error:
Document name or path is invalid.
But if I browse it, I can see the file intact.
Can somebody please provide a simple sample for this?
Thanks.!