HTML Layout Pages and Page Templates
|
Attribute |
Required |
Description |
|
Name |
Yes |
The name of this tag. This name must be unique within the file and cannot contain spaces. |
<GEN:Table Name=”EmployeesTable”>
<!-- other HTML code to specify the rows and columns of a table -->
</GEN:Table>
<GEN:Table Name=”EmployeesTable”>
<!-- table header and header row -->
<table>
<tr><td
colspan=10>Header Row</td></tr>
<!-- repeating row
template -->
<GEN:ItemTemplate>
<-- repeating row
template -->
</GEN:ItemTemplate>
<!-- table footer -->
<tr><td colspan=10>Table Footer
Row</td></tr>
</table>
</GEN:Table >