อาร์เอสเอส (RSS หรือ Really Simple Syndication) | ||
RSS ? [wikipedia.org]
ตัวย่อต่าง ๆ ที่ใช้อ้างถึงมาตรฐานนี้ : งานพัฒนาเกี่ยวกับอาร์เอสเอส - test.htm ต.ย.เรียกข้อมูลผ่าน iframe หรือ jsscript - rss20.xml (แฟ้ม ข่าวแบบ xml จาก rssthai.com) - callAmazonRESTWS.php จาก ผศ.ดร.กานดา รุณนะพงศา - news.php - rss.php (ทำงานได้) - blog_rss.php (rss of wordpress) |
อาร์เอสเอส (RSS = Really Simple Syndication) [manager.co.th]
รู้ได้อย่างไรว่าเว็บไหนมีบริการ RSS เอ็กเอ็มแอล (XML = eXtensible Markup Language) วิธีการรับ RSS มาอ่านในเครื่องคอมพิวเตอร์ของตน - http://www.rssreader.com - http://www.rssbandit.org - http://www.sharpreader.net - http://www.mozilla.com/thunderbird - http://www.nuparadigm.com แนะนำเว็บ (Web Guides) - http://www.thairssfeed.com - http://www.rssthai.com - http://www.arip.co.th/2006/rss.php - http://www.mostz.com (Free DL) - http://www.wikipedia.org - http://magpierss.sourceforge.net - http://www.rjk-hosting.co.uk (PHP RSS Reader) - http://www.manager.co.th - http://gotoknow.org/blog/tutorial/26125 RSS service - http://www.arip.co.th/rss/rss_news.xml *** - http://www.bangkokbiznews.com/rss/index.xml - http://www.bcoms.net/rss.php?b=tipcomputer - http://norsorpor.com/chooseRSS.php - http://www.thaibusinessnews.com/rss.aspx - http://tourismthailand.org/rss/index.php - http://www.tat.or.th/webservice.asp - http://www.thaiall.com/blog/feed/ |
RSS by .NET (Really Simple Syndication) |
อ้างอิงจาก
+ http://www.codersource.net/asp_net_rss_feeds.aspx (RssFeeds.Zip) + http://www.thaiall.com/vbnet/data_conn.htm |
Code Sample Public Class Form1 Dim i As Integer = 0 Dim DS As New DataSet() Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles MyBase.Load DS.ReadXml("http://www.arip.co.th/rss/rss_news.xml") DataGridView1.DataSource = DS.Tables(i) End Sub Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, _ ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) _ Handles DataGridView1.CellContentClick i = i + 1 If DS.Tables.Count = i Then i = 0 DataGridView1.DataSource = DS.Tables(i) End Sub End Class |
RSS file sample | .. |
<?xml version="1.0" encoding="windows-874" ?> <rss version="2.0"> <channel> <title>RSS by Truehits.net</title> <link>http://truehits.net</link> <description>Truhits.net Thailand Web Directory,Web Ranking</description> <language>th-TH</language> <copyright>Copyright 2006 truehits.net</copyright> <lastBuildDate>Sun,03 Feb 2008</lastBuildDate> <item> <title>อันดับ 1: www.tlcthai.com (หมวดหลัก การศึกษา)</title> <description>มีค่า UIP:38,355 , USS:70,709 , PV:288,698</description> <link>http://education.truehits.net/index.php</link> <pubDate>Sun,03 Feb 2008</pubDate> </item> <item> <title>อันดับ 2: www.vcharkarn.com (หมวดหลัก การศึกษา)</title> <description>มีค่า UIP:35,313 , USS:56,004 , PV:134,502</description> <link>http://education.truehits.net/index.php</link> <pubDate>Sun,03 Feb 2008</pubDate> </item> <item> <title>อันดับ 3: learners.in.th (หมวดหลัก การศึกษา)</title> <description>มีค่า UIP:30,256 , USS:45,735 , PV:97,665</description> <link>http://education.truehits.net/index.php</link> <pubDate>Sun,03 Feb 2008</pubDate> </item> </channel> </rss> |