Home Page - www.tele-pro.co.uk - Ecommerce Integration


XML RSS Content Feed Class Code

 The XML RSS Content Feed VBScript Class makes it easy to download and display RSS XML News Feeds XML RSS Content Feed VBScript Class Code

This page shows sample code for using the RSSContentFeed VBScript Class.

 Go Including the Class File
 Go Simple Code Example
 Go View More Code Examples
 

Including the Class File

To use the RSS Content Feed class in your code, simply include the file containing the class definition and use the object in the following manner.

<!-- #INCLUDE FILE="rss_content_feed_class.1.asp" -->
<%
Set rss= New RSSContentFeed
%>


 

Example Code - Simple

This sample code shows the minimum code required to collect RSS XML content and show the results with the RSSContentFeed VBScript Class.

<!-- #INCLUDE FILE="rss_content_feed_class.1.asp" -->
<%
'create object
Dim rss
Set rss= New RSSContentFeed

'get content
rss.ContentURL = "http://www.sofotex.com/download/xml/24.xml"
rss.GetRSS()

'display content
response.write "<h3>" & rss.ChannelTitle & "</h3>"

Dim i
For Each i in rss.Results
response.write rss.Links(i) & "<br>"
Next

'release object
Set rss= Nothing
%>
 

 Go Download this sample code as text
 Go See this sample code working

 

RSS Content Feed Code Examples

 Go Display standard RSS content
 Go Including the RSS ContentFeed class
 Go Properties: ContentURL, PostData, MaxResults, Cache, CacheDays, FromCache
 Go Methods: Clear, GetRSS, GetAmazonRSS, DeleteCache, Transform, XMLValue, Shorten
 Go Display Amazon RSS content
 Go Display eBay RSS content
 Go Sample Code
 

See Also

 Go RSSContentFeed Class Intro
 Go RSSContentFeed Class Reference
 Go RSSContentFeed Class Sample Code
 Go RSSContentFeed Class Demo

Search RSS

 Go Website: RSS
 Go Website: RSS Content Feed Class
 Go Google: RSS Feed
 Go Google: RSS Content Feed Class
 

RSS Links

 Go www.w3.org/RDF/
 Go www.xml.org/xml
 Go RDF Site Summary RSS 1.0

RSS Content Feed

xml, rss, rdf, content, feed, vbscript, class, news feeds, RSSContentFeed, properties, methods, object, rss 0.91, 1.0, 2.0, asp, vb, api, free news feed, sofotex, prweb, alistapart, news.com, newsfactor, code, coding, script, scripting, utility
 

Top | Home | ECommerce | Hosting | Site Map | Search | © 2003-6 | Contact