Possible Duplicate:
XML attribute vs XML element
Can someone explain me why more and more examples that I see on the Internet, keeping the text data in an attribute value instead of text node? Example:
<Root>
<Data Value="blaaa" />
<Root>
Instead of this:
<Root>
<Data>Blaaa</Data>
</Root>
What are the benefits actually to use attributes? Thanks.