Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RSS, Images and XML

Status
Not open for further replies.

andyc209

IS-IT--Management
Dec 7, 2004
98
GB
I have created a simple RSS feed in XML which is generated via an ASP file for updated feeds. This seems to work fine except I want to add a company logo on each feed but cannot get it to appear. Can someone look at my XML output and see where I am going wrong. The links are all using the localhost path at the moment for development.

<?xml version="1.0" encoding="iso-8859-1" ?>
- <rss version="2.0">
- <channel>
<title>Company Name</title>
<link> <description>Living Money Loans</description>
<language>en-us</language>
- <item>
<title>This is RNS 1</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
- <description>
- <![CDATA[ test
]]>
</description>
<pubDate>08/09/2006</pubDate>
</item>
- <item>
<title>This is RNS 2</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
+ <description>
- <![CDATA[ test copy 2
]]>
</description>
<pubDate>11/09/2006</pubDate>
</item>
- <item>
<title>This is RNS 3</title>
<link>- <image>
<url> <width>160</width>
<height>67</height>
<description>Living Money Loans</description>
</image>
- <description>
- <![CDATA[ test copy 3
]]>
</description>
<pubDate>12/09/2006</pubDate>
</item>
</channel>
</rss>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top