Subject: Why wont this work?
From: "Moazzam Ahmed" <moazzam@xxxxxxxxx>
Date: Thu, 6 Apr 2000 16:09:45 -0500
|
my XML page
....
<s:Schema id='RowsetSchema'>
<s:ElementType name='row' content='eltOnly'>
<s:AttributeType name='CaseID' rs:number='1' rs:writeunknown='true'>
<s:datatype dt:type='string' rs:dbtype='str' dt:maxLength='10'
rs:maybenull='false'/>
</s:AttributeType>
.....
my XSL page
<xsl:template match="s:AttributeType">
<xsl:value-of select="@name" />
</xsl:template>
This gives me the string "caseID".
but if I do select="@*" it wont give me ALL attributes. it gives me
data5
data7
data9
how do I get ALL my attribute values into , say an array?
Moazzam
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|