Adding Blogging Support to Apps with My.Blogs and Visual Basic 2005
I just saw a pointer to a MSDN TV show you can check out on a new set of features (called My.Blogs) you can download for VB that makes it really easy to add blogging support to both ASP.NET 2.0 and Windows Forms application. You can watch it here and you can download the My.Blogs library here.
Once installed you can write code like this to databind a feed to a GridView control:
Dim MyFeed As MyBlogs.Feed MyFeed = My.Blogs.Read(http://blogs.msdn.com/vbteam/Rss.aspx)
GridView1.DataSource = MyFeed.Entries
GridView1.DataBind()
Dmitry has also been working on some RSS libraries in his spare time. These work with both C# and VB and will add some pretty cool features (including cache integration of RSS feeds, an RSS Datasource control for databinding, etc). I'll send a pointer to them once he publishes them -- they should be very cool to use.
Hope this helps,
Scott