A
andy
say i currently have xml like so...
<node>
<Date>20080507</Date>
<ChildNode />
<ChildNode />
</node>
<node>
<Date>20080507</Date>
<ChildNode />
<ChildNode />
</node>
etc...
And I know that later i want to group by the date (either using xslt or
after importing the xml data into another format)
would it be better to have the date as the master node ?, like for
example...
<Date date="20080507">
<node>
<ChildNode />
<ChildNode />
</node>
<node>
<ChildNode />
<ChildNode />
</node>
</Date>
Are there any good guides on how and why to structure xml documents ?
any help appreciated.
<node>
<Date>20080507</Date>
<ChildNode />
<ChildNode />
</node>
<node>
<Date>20080507</Date>
<ChildNode />
<ChildNode />
</node>
etc...
And I know that later i want to group by the date (either using xslt or
after importing the xml data into another format)
would it be better to have the date as the master node ?, like for
example...
<Date date="20080507">
<node>
<ChildNode />
<ChildNode />
</node>
<node>
<ChildNode />
<ChildNode />
</node>
</Date>
Are there any good guides on how and why to structure xml documents ?
any help appreciated.