Mostrare un feed rss usando asp
Posted on 02. Jul, 2007 by Administrator in asp, tutorials
Questo tutorial spiega come aggiungere contenuti dinamici da un feed 2.0. RSS è un formato XML per mostrare nuovi contenuti, update di siti web eblogs.
Il formato RSS 2.0
RSS 2.0 è semplicemente un file xml.In un fedd RSS,<item> viene ripetuto per ciascuna news. Il seguente è un esempio di feed rss. vedi Resources per le specifiche complete.
<rss version="2.0">
<channel>
<title>channel title</title>
<link>link to channel</link>
<description>description</description>
<language>en-us</language>
<item>
<title>item title</title>
<link>link url</link>
<guid>unique id</guid>
<description>item description</description>
</item>
</channel>
</rss>
Leggi l'articolo completo: http://www.codebeach.com/tutorials/displaying-rss-feeds-using-asp.asp





Leave a reply