Link to home
Start Free TrialLog in
Avatar of krbnldy
krbnldy

asked on

my xml page not displaying

Hi

I am trying to to build a site map and i have the following xml page
<?xml version="1.0" encoding="ISO-8859-1" ?>
- <sitemap>
- <url>
  <TITLE>Home</TITLE>  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/index.asp</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>About US</TITLE>  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/aboutus.html</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>Services</TITLE>  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/services.asp</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>Feedback Form</TITLE>  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/feedback.html</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>Whats New</TITLE>  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/whatsnew.asp</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>Site Map</TITLE>
  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/site.asp</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>Privacy</TITLE>
  <LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/Privacy.html</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
- <url>
  <TITLE>Terms of Use</TITLE>  LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/terms_use.html</LOC>
  <LASTMOD>2006-05-03</LASTMOD>
  <changefreq>monthly</changefreq>
  <priority>0.0</priority>
  </url>
  </sitemap>
and the  following html page,  but when i upload files to hosting server and try to view page, the data is not showing in my tables.

<html>
<body>

<xml id="ccsitemap" src="smap.xml"></xml>

<table border="1" datasrc="#ccsitemap">
<tr><th colspan="3">Site Map</th></tr>
<tr><th>Title</th><th>URL</th><th>LastModified</th></tr>
<tbody>
<tr>
<td><span datafld="TITLE"></span></td>
<td><span datafld="LOC"></span></td>
<td><span datafld="LASTMOD"></span></td>
</tr>
</tbody>

</table>

</body>
</html>
THis is my first xml page

Please help
Avatar of jkmyoung
jkmyoung

The XML doesn't appear to be well-formed. In your last URL node,
<TITLE>Terms of Use</TITLE>  LOC>http://www.onestopcaribbeanshop.com/classicalconcierge/terms_use.html</LOC>


<LOC> is missing the opening '<'
Avatar of krbnldy

ASKER

I made the correction and it is still not showing

ASKER CERTIFIED SOLUTION
Avatar of jkmyoung
jkmyoung

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial