Creating Web Slices is extremely easy and fast, and at the same time it can provide amazing results. In this post I will show how the Swine Flu Web Slice has been created (in less then one hour!). The full project with source code is provided at the end of this post.
Before starting, you need a website (unless you already have one). For the sake of this scenario, we will use Microsoft Visual Web Developer 2008 Express Edition to create an ASP.Net Web Application.
IE8 Web Slices development is described in detail in this MSDN Article. In this scenario we want to have full control over the Web Slice content, so we will use an Alternative Display Source. We also want to customize the update and notification mechanism, so we will implement an Alternative Update Source. The overall architecture looks like this:
The first step is creating a standard web page (Default.aspx ), that will be used by IE8 for the Web Slice preview; the content of this page can be pure HTML, CSS, JavaScript…but also Silverlight or any other ActiveX available on the machine.
In talking with the CDC (Centers for Disease Control and Prevention) and the WHO (World Health Organization), they available made two data feeds:
Those feeds are downloaded and parsed in the code behind of the page, as follows:
private static DateTime GetLastRssUpdate()
{
using (WebClient client = new WebClient())
string content = Encoding.ASCII.GetString(client.DownloadData(Rss_Feed));
XmlDocument rssDoc = new XmlDocument();
rssDoc.LoadXml(content);
HttpContext.Current.Cache.Insert("SwineFluRssFeed", content);
return DateTime.Parse(rssDoc.SelectSingleNode("/rss/channel/item")["pubDate"].InnerXml);
}
Note that we are caching the feed on the server side, in order to improve the network performance. Once we have the data, we can use the ASP.Net Framework and LINQ to bind the data to our UI.
private void BindRssFeed()
string content = Cache.Get("SwineFluRssFeed") as string;
XDocument rssFeed = XDocument.Parse(content);
rssList.DataSource = (from item in rssFeed.Descendants("item")
select new
Text = Short((string)item.Element("description")),
Url = (string)item.Element("link")
}).Take(5);
rssList.DataBind();
The second step is to customize a few properties of the web slices and define the logic that will notify the user when there is an update.
In order to do this, we will use a second page (SliceUpdate.aspx ).
<body>
<div class="hslice" id="SwineFlu">
<div class="entry-title" style="display: none">
Swine Flu Updates
</div>
<a href="http://visitmix.com/WebSlices/SwineFlu" rel="entry-content" style="display: none" />
<a href="http://www.cdc.gov/swineflu/" rel="Bookmark" style="display: none" target="_blank" />
<span class="ttl" style="display: none">15</span>
<div class="entry-content" runat="server" id="updateTrigger">
</body>
Let’s have a look more in detail to each section of the body:
The last step is to make the web slice discoverable. The CDC will soon include the web slice on their main site; in the meantime, the slice is available on the IE8 Addons Gallery.
The “Add to Internet Explorer” button calls a simple JavaScript function.
<button onclick="window.external.AddToFavoritesBar(
'http://visitmix.com/WebSlices/SwineFlu/SliceUpdate.aspx#SwineFlu',
'Swine Flu Updates',
'slice')">
Add to Internet Explorer
</button>
Note that the AddToFavoritesBar function point to the Alternative Update Source page followed by the ID of the slice (SliceUpdate.aspx#SwineFlu).
That’s it! With a couple of RSS feeds and a bunch of lines of code we made a very useful web slice!
The best part is that this Web Slice can easily be customized to show any other RSS or Twitter feed! ;-)
You can download the full project with the source code here. You can preview the slice here.
Happy coding!
PingBack from http://microsoft-sharepoint.simplynetdev.com/h1n1-flu-swine-flu-web-slice-step-by-step/
Microsoft’s own Peter Neupert has some good thoughts on technology and the H1N1 Flu (Swine Flu) today
Great tutorial..I think is easy to create web slice through this..
However I do hate this swine flu :(
http://www.swineflu7.com/
Particularly I think IE8 is a complete disgrace in terms of current browsers.
I personally don't bother with IE any more, I haven't even tried the newest version... Firefox all the way
If you hate IE so badly, then why are you even browsing this blog and commenting.
Maybe you just hate what you don't understand.
Ahah..trolls...c'mon, at least say WHY!! I like Firefox, but I still prefer IE8. Why? It doesn't crash, it's secure and I love accelerators and slices and it does what I want it to do: browsing the web :-)
Nice post, thanks!
I don't use IE now!I use Firefox,I think it's good.
It was a very nice idea! Just wanna say thank you for the information you have shared. Just continue writing this kind of post. I will be your loyal reader. Thanks again.
this is good job
Thank you very much,I have read it now.
I like the side of the article
you have been inspiring to me with the post and all!
It's really great to post my comments on such a blog. I would like to appreciate the great work done by the web master and would like to tell everyone that they should post their interesting comments and should make this blog interesting. Once again I would like to say keep it up to blog owner!!!!
Interesting article is very nice information I like to know more about it and its advantag