Hi,
I've got a SQL Server with various enitities. Now I want to make the following XML:
A Client, with it's contacts, orders & notes. (But to the client are also related to support issues , contracts and meetings (all entities)).
How can I start and how should I do this? So I would like to end up with a strcuture like:
<clients>
<client>
<name/>
<addres/>
<contacts>
<contact>
<contactname/>
</contact>
<contact>
<contactname/>
</contact>
</contacts>
etc...
Any pointers would be greatly appericiated + also any easy resources for learning how to make templates or solutions so I can convert the above asked XML to XLS and HTML (XSLT or something? can't find good intro articles)
Thank u!