Hi,
I am trying to find an XSLT code for transforming an XML file of the structure:
Code:
<Search>
<title>
VB.Net Programming with Public Beta</title>
<author_name>Billy Hollis</author_name>
</Search>
<Search1>
<title>
VB.Net Programming with Public Beta</title>
<author_name>Rockford Lhotka</author_name>
</Search2>
into something like this:
Code:
<Search>
<title>
VB.Net Programming with Public Beta"
<author_name author_id="1">Billy Hollis</author_name>
<author_name author_id="2">Rockford Lhotka</author_name> </author>
</title>
</Search>
Can u please suggest what should be the XSLT Code that I should be using??