hi,
I've been trying to embed a csv file into my html file..i have tried many source code, but nothing works.
I've been trying to embed a csv file into my html file..i have tried many source code, but nothing works.
Code:
<html>
<head><title>Reading values into a table</title></head>
<body>
<table datasrc='#data'>
<thead>
<tr><th>Number</th><th>Category</th></tr>
</thead>
<tbody> <tr>
<td><span datafld='number'> </span></td>
<td><span datafld='category'></span></td>
</tbody>
</table>
<object ID=data classid="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
<param nAme="DataURL" value="cats.csv">
<param nAme="UseHeader" value="true">
</object>
</body>
</html>
Comment