<html>
At 04:03 PM 9/8/98 -0600, you wrote: <br>
<blockquote type=cite cite>&gt;From the Microsoft site <br>
<a href="http://www.microsoft.com/xml/tutorial/author_doc.asp">http://www.microsoft.com/xml/tutorial/author_doc.asp</a>
<br>
<br>
there is an example: <br>
<br>
&lt;books&gt; <br>
&nbsp;&nbsp; &lt;book isbn=&quot;0345374827&quot;&gt; <br>
&nbsp;&nbsp;&nbsp;&nbsp; &lt;title&gt;The Great Shark Hunt&lt;/title&gt; <br>
&nbsp;&nbsp;&nbsp;&nbsp; &lt;author&gt;Hunter S. Thompson&lt;/author&gt; <br>
&nbsp;&nbsp; &lt;/book&gt; <br>
 &lt;/books&gt; <br>
<br>
why isn't it: <br>
<br>
&lt;books&gt; <br>
&nbsp;&nbsp; &lt;book isbn=&quot;0345374827&quot; title =&quot;The Great Shark Hunt&quot; author=&quot;Hunter S. Thompson&quot; <br>
&nbsp;&nbsp; &lt;/book&gt; <br>
 &lt;/books&gt; <br>
<br>
or <br>
<br>
&lt;books&gt; <br>
&nbsp;&nbsp; &lt;book <br>
&nbsp;&nbsp;&nbsp; &lt;isbn&gt;0345374827&lt;/isbn&gt; <br>
&nbsp;&nbsp;&nbsp;&nbsp; &lt;title&gt;The Great Shark Hunt&lt;/title&gt; <br>
&nbsp;&nbsp;&nbsp;&nbsp; &lt;author&gt;Hunter S. Thompson&lt;/author&gt; <br>
&nbsp;&nbsp; &lt;/book&gt; <br>
 &lt;/books&gt; <br>
<br>
So far I have understood that the 3 notations are legal. But are they identical ? </blockquote><br>
&nbsp; They are definitely not identical, but they are all equally valid. The only difference is in how you access the information in your XML application. If you were using xt (a freeware XML processor), you could say attribute(isbn) or you could say {isbn} to get at that value.<br>
<br>
&nbsp; I tend to use attributes in cases where the attribute value is likely to be short and all tags of with the same name are likely to have that attribute associated with them. Does anyone else have another (better?) rule of thumb?<br>
<br>
<div>-- Andrew</div>
<br>
<div>&nbsp;&nbsp; Andrew Bunner</div>
<div>&nbsp;&nbsp; President, Founder Mass Quantities, Inc.</div>
<div>&nbsp;&nbsp; Professional Supplements for the Perfect Physique</div>
&nbsp;&nbsp; <a href="http://www.massquantities.com/" EUDORA=AUTOURL>http://www.massquantities.com</a> 
</html>