-----Original Message-----
From: Avital Nagar [mailto:Avital@cellact.com]
Sent: Monday, October 08, 2001 6:41 AM
To: xml-dev@lists.xml.org
Subject: [xml-dev] DOMIf I have an xml document that looks like this:
<shop>
<location> US </location>
<books>
<title> Snow White </title>
<author>
<firstname> Liza </firstname>
<lastname> Baker </lastname>
</author>
<author>
<firstname> Tanith </firstname>
<lastname> Lee </lastname>
</author>
</books>
</shop>
How can I get the firstnames? I have to display only the first name in asp. I know I have to use something with getelementsbytagname and firstChild.