Hi,
I have a xml file and need to bind the data to a html table. Binding each recordset in the xml file to each html table row is simple.
<XML ID = "xmlData" src = "myXMLFile.xml"></XML>
<TABLE BORDER = "1" DATASRC = "#xmlData" DATAPAGESIZE = "2"
ID = "tbl">
<THEAD>
<TR>
<TH>Last Name</TH>
</TR>
</THEAD>
<TR>
<TD><SPAN DATAFLD = "LastName"></SPAN></TD>
</TR>
</TABLE>
However, I would like to bind each xml recordset to each column (not bind by row) in the html table. Is this possible?
Thank you .
I have a xml file and need to bind the data to a html table. Binding each recordset in the xml file to each html table row is simple.
<XML ID = "xmlData" src = "myXMLFile.xml"></XML>
<TABLE BORDER = "1" DATASRC = "#xmlData" DATAPAGESIZE = "2"
ID = "tbl">
<THEAD>
<TR>
<TH>Last Name</TH>
</TR>
</THEAD>
<TR>
<TD><SPAN DATAFLD = "LastName"></SPAN></TD>
</TR>
</TABLE>
However, I would like to bind each xml recordset to each column (not bind by row) in the html table. Is this possible?
Thank you .