Hmm... interesting ....
If it's named Cust2x.htm all I see is just an empty grid ...
If it's named Cust2x.asp I see the header, but no data ...
I'm guessing PIE doesn't support the <xml> tag ...
KS
"KS" <ks@blah.com> wrote in message news:...
> Try renaming the file from Cust2x.htm to Cust2x.asp ...
>
> I've never tried to use the <xml> tag in .htm files ...
>
> KS
>
> "wanewrld" <anonymous@discussions.microsoft.com> wrote in message
> news:3120DBA2-B60A-4E9B-9A41-6B62531BB2A4@microsoft.com...
> > I'm having trouble loading data into an HTML table from an XML file.
I'm
> running Mobile Windows 2003 on a Dell Axim 3xi. The code runs fine on the
> desktop, but the data doesn't show on the PDA. I've tried putting the two
> files in several different folders on the PDA, but that hasn't helped.
What
> am I doing wrong? Any help is appreciated.
> >
> > The code for both files are listed below.
> >
> > Sample code: Cust2x.htm
> >
> > <html><head><script type="text/jscript">
> > function testclick(field)
> > {
> > var row=field.rowIndex
> > xmldso_list.recordset.absoluteposition=row
> > td_title.innerHTML=xmldso_list.recordset("C_nmbr")
> > td_artist.innerHTML=xmldso_list.recordset("Name")
> > td_year.innerHTML=xmldso_list.recordset("Zip")
> > td_country.innerHTML=xmldso_list.recordset("Phone")
> > td_company.innerHTML=xmldso_list.recordset("Contact")
> > td_price.innerHTML=xmldso_list.recordset("Terms")
> > }
> > </script></head><body><xml id="xmldso_list"
src="cust2x.xml"></xml><table
> datasrc="#xmldso_list" border="1"><thead><tr
>
align="left"><th>C_nmbr</th><th>Name</th><th>Zip</th><th>Phone</th><th>Conta
> ct</th><th>Terms</th></tr></thead><td><div datafld="C_nmbr"
/></td><td><div
> datafld="Name" /></td><td><div datafld="Zip" /></td><td><div
datafld="Phone"
> /></td><td><div datafld="Contact" /></td><td><div datafld="Terms"
> /></td></tr></table></body></html>
> >
> > Sample Data: cust2x.xml
> >
> > <?xml version="1.0"
> ?><Custlist><Customer><C_nmbr>100047</C_nmbr><Name>222
>
SUNSET</Name><Contact></Contact><Zip>92014</Zip><Phone>848-2427</Phone><Term
> s>NET 30
1</Terms></Customer><Customer><C_nmbr>100298</C_nmbr><Name>AB
> GIFT SHOP</Name><Contact>MARY LOU
> McDUFF</Contact><Zip>02667</Zip><Phone>1-555-946-5455</Phone><Terms>NET 30
> 1</Terms></Customer><Customer><C_nmbr>100296</C_nmbr><Name>AZ SPECIALTY
> SHOP, llc</Name><Contact>MARY LOU
> McBICKER</Contact><Zip>99352</Zip><Phone>1-509-946-5432</Phone><Terms>CASH
> 4</Terms></Customer><Customer><C_nmbr>100302</C_nmbr><Name>A CASE OF THE
> GLITTERS</Name><Contact>CHERYL,
> MERYL</Contact><Zip>10956</Zip><Phone>1-914-634-1922</Phone><Terms>C.O.D.
> 2</Terms></Customer></Custlist>
>
>