XML binding to html tables
Hi,
I am binding an xml doc to an html table. It works fine when using a simple xml, but I can't get it to bind when using something more complex eg. with inline style etc. Please help.
What must my datasource and datafield values be?
Code:
this is the xml
<rs:data>
<z:row c0='value' c1='value'/>
<z:row c0='value' c1='value'/>
<z:row c0='value' c1='value'/>
</rs:data>
--
This is the html
<table datasrc=? datafld=?>
<tr>
<td><span datafld=?></span></td>
</tr>
</table>
The columns must print the values of c0 , c1 etc.