
May 19th, 2005, 05:14 AM
|
|
Contributing User
|
|
Join Date: Oct 2004
Posts: 175
Time spent in forums: 1 Day 16 h 2 m 30 sec
Reputation Power: 5
|
|
Quote: | Originally Posted by rominosj Hello,
Are aspx files created for RSS easily read by feeds? or any or most feeds? I just tried one and my feed could not read the rss.aspx file.
Any solution to be able to syndicate my content which is created in rss.aspx format?
Thanks, |
I am not sure what you are talking about. An Rss file is an xml file which has a certain format. You can view a sample rss entry here.
PHP Code:
<rss version="0.91"> <channel> <title>Sitename</title> <link>http://www.sitename.com/</link> <description>sitename.com description.</description> <language>en-us</language> <item> <title>rss data test 1</title> <link>http://www.sitename.com/filename.aspx</link> <description>rss description for the page.</description> </item> </channel> </rss>
This file is generated manually or by writing a program. U can probably search in G to find more about the meaning of RSS.
I hope I was talking the same thing that u wanted to know. If not, pls specify exactly what u want.
|