Hi is there anyway of doing the following using ASP? i have the following XML file example:
how would i return all records where the <owner> = foo
any idea?
Code:
<site>
<page>
<url>foo</url>
<title>foo</title>
<owner>foo<owner>
</page>
<page>
<url>foo1</url>
<title>foo1</title>
<owner>foo<owner>
</page>
<page>
<url>foo2</url>
<title>foo2</title>
<owner>foo1<owner>
</page>
<site>
how would i return all records where the <owner> = foo
any idea?