RSS Reader for ASP
Frequently Asked Questionsthen contact our support service
Questions
Why the fade effect is not visible in the Internet Explorer?
How can I change styles in the displayed item?
Answers
Why the fade effect is not visible in the Internet Explorer?
In Internet Explorer if you use the fade effect the browser breaks the elements font face, it is a bug of the Internet Explorer browser.
If you want to use the fade effect in the Internet Explorer and you haven’t problem with the font face bug, all you need is to open the TSRSSReader.js file in a text editor and set to true the ieFade variable.
How can I change styles in the displayed item?
In the RSS reader insertion process a file is generated to define the visual aspect of the elements related to the RSS reader. The file is named "RSSReader.css" and it's created in "TSScript/TSRSSReader/RSSReader.css", the defined classes are:
.rssclass (To define the box dimensions, borders and padding for the RSS Reader)
.rssclass .rssitem (To define the items aspect display in the RSS reader)
.rssclass .rsstitle (To define the aspect of the title of news)
.rssclass .rssdate (To define the aspect of the date in the RSS items)
.rssclass a (To define the aspect of the links inside items)
You can modify the visualization of the elements if you modify the attributes in the classes above.
How to show more than one element in the RSS reader?
After inserting the RSS reader in your website, the extension inserts a JAVASCRIPT code in the webpage as follows:
rssContainer1Instance = new TSRSSReader('
By default the RSS reader shows only one item at time, but passing a new integer variable to the end of parameters list, you can specify the item count to be shown at the same time:
rssContainer1Instance = new TSRSSReader('
In the example above the RSS reader shows 5 items at the same time.
Then you need to insert the extension in the template page (just to generate the scripts) or manually paste the scripts from a normal page into the template.
RSS Reader requires ASP script on the server where the website is published.
If you are testing RSS Reader locally, you should have a local web server with support for ASP scripts. Also ASP must be able to reach the RSS feed, in other words, must be able to request the RSS feed from a remote web site.
In any case, verify that the URL of the RSS feed is correct.