Table Tag Use

Used In

HTML Layout Pages and Page Templates

Code Generation Tag Attributes

Attribute

Required

Description

Name

Yes

The name of this tag.  This name must be unique within the file and cannot contain spaces.

Examples

     <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 >

See Also

Table Tag