does anyone have a good background in xsl/xslt transformations
of xml docs to html viewable?  if so, how in the hizzeck would
i work this snippet? im stuck, and cant find any info on this...

must be basic, but im soo far on this project, i dont want
this to be a problem ;) thanks (column values transformed into
dry late night humor to protect against any nda issues.)

<row num="1">

        <column num="1">Charlie</column>

        <column num="2">Horse</column>

        <column num="3">10</column>

        <column num="4">Richter Scale</column>

</row>

and i want this to show up in a table row, 4 columns.  there are
more instances of "row" nodes, so this has to repeat.....

here is what i have soo far....thanks!

<xsl:for-each select="row">
<tr>
<td bgcolor="White"><span
style="color:Black;font-size:10px;font-family:Tahoma">**need to show
value of num="1"**</span></td>
<td bgcolor="White"><span
style="color:Black;font-size:10px;font-family:Tahoma">**need to show
value of num="2"**</span></td>
<td bgcolor="White"><span
style="color:Black;font-size:10px;font-family:Tahoma">**need to show
value of num="3"**</span></td>
<td bgcolor="White"><span
style="color:Black;font-size:10px;font-family:Tahoma">**need to show
value of num="4"**</span></td>
</tr>                   
</xsl:for-each><!-- row -->                     

...tony

tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.334.6331 

______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to