I have two XML Files that looks like:
...........
XML File 1:
...........
<Result>
<Id>111</Id>
<Title>Result 111 title</Title>
<Description>Result 111 Description</Description>
</Result>
...........
XML File 2:
...........
<Result>
<Id>222</Id>
<Title>Result 222 title</Title>
<Description>Result 222 Description</Description>
</Result>
I have XSLT that produces a design like this:
|ID |
|Title :| |Result 111 Title|
|Description:| |Result 111 Description|
What i want is i also want to add the elements value from 2nd XML File so the design will look like this:
|ID |
|Title :| |Result 111 Title|
|Description:| |Result 111 Description|
|ID |
|Title :| |Result 222 Title|
|Description:| |Result 222 Description|
This design will be produced during the run time in C#. I have so far applied one XML to One XSLT. But this is different. How can i achieve this. Please treat "||" to be a Design of "" tag. Any help really appreciated. Thanks..! :)