Re: How do you access XMLAttributes in order of appearance?

2005-12-09 Thread Sean Corfield
On 12/9/05, asherwood @ huntwar. com asherwood @ huntwar. com <[EMAIL PROTECTED]> wrote: > I had considered these before hand, but I wanted to try and work within the > standard functions without having to maintain information about attribute > order in things like lists. Just bear in mind that

Re: How do you access XMLAttributes in order of appearance?

2005-12-09 Thread asherwood
Thanks for the ideas, Dan. I had considered these before hand, but I wanted to try and work within the standard functions without having to maintain information about attribute order in things like lists. The XML spec specifically states that attributes are unorderd, but I was hoping there was

RE: How do you access XMLAttributes in order of appearance?

2005-12-09 Thread Dan G. Switzer, II
Alex, >I am on a project that requires me to loop over the attributes on an XML >element in the exact order that they appear. For example: > >[ELEMENT name="Alex" cellphone="555-555-"/] > >When you access the XMLAttributes struct when you XMLParse the string, the >'cellphone' attribute is pres

RE: How do you access XMLAttributes in order of appearance?

2005-12-09 Thread Dawson, Michael
lto:[EMAIL PROTECTED] Sent: Friday, December 09, 2005 8:36 AM To: CF-Talk Subject: How do you access XMLAttributes in order of appearance? Hello, I am on a project that requires me to loop over the attributes on an XML element in the exact order that they appear. For example: [ELEMENT name="

How do you access XMLAttributes in order of appearance?

2005-12-09 Thread asherwood
Hello, I am on a project that requires me to loop over the attributes on an XML element in the exact order that they appear. For example: [ELEMENT name="Alex" cellphone="555-555-"/] When you access the XMLAttributes struct when you XMLParse the string, the 'cellphone' attribute is presente