XSL help
Hi Friends,
I have XML as below
<root>
<table class="aa">
<tr><td>test</td></tr>
</table>
<table class="bb">
<tr><td>new</td></tr>
</table>
<table class="aa">
<tr><td>some</td></tr>
</table>
<table class="bb">
<tr><td>best</td></tr>
</table>
</root>
I need to display test and some. How to write XSL to get only those elements. I can see class="aa" is making differance.
Please help me. I will really appreciate
Thank
|