<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech News, Tech Resources, Technology Articles, Gadget News, Computer News &#187; AJAX</title>
	<atom:link href="http://www.comteken.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.comteken.com</link>
	<description>IT news, software technology, IT resources, computer software, laptops, desktops,  information systems,  hardware technology, multimedia, Windows OS, linux clients, network solution, easy internet, essential guides, domains, webhosting, web program, database programming</description>
	<lastBuildDate>Fri, 27 Jan 2012 11:22:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>MVC AJAX Sites That Gracefully Degrade</title>
		<link>http://www.comteken.com/web-programming/mvc-ajax-sites-that-gracefully-degrade/</link>
		<comments>http://www.comteken.com/web-programming/mvc-ajax-sites-that-gracefully-degrade/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 14:50:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.comteken.com/?p=12</guid>
		<description><![CDATA[<a href="http://www.comteken.com/web-programming/mvc-ajax-sites-that-gracefully-degrade/"><img align="left" hspace="5" width="100" src="http://www.singingeels.com/Articles/Articles/UserImage.aspx?ImageID=23d3731b-07bd-46d6-b74e-c215b65f696c" class="alignleft wp-post-image tfe" alt="ASP.NET MVC - AJAX application that gracefully degrades part 1" title="ASP.NET MVC - AJAX application that gracefully degrades part 1" /></a>As AJAX-enabled web sites continue to grow in popularity, the development community continues to try to solve the common problems of using AJAX. One big concern that used to require a lot of work is that of gracefully degrading your AJAX site for non-capable browsers. Thankfully, the ASP.NET MVC framework makes this an easy task. [...]]]></description>
			<content:encoded><![CDATA[<p>As AJAX-enabled web sites continue to grow in popularity, the development community continues to try to solve the common problems of using AJAX. One big concern that used to require a lot of work is that of gracefully degrading your AJAX site for non-capable browsers. Thankfully, the ASP.NET MVC framework makes this an easy task.</p>
<p>This article will demonstrate some basic AJAX functionality that comes with the ASP.NET MVC framework. We&#8217;ll also see how simple it is to get the same usefulness of our web application even if we disable JavaScript capabilities in our browser.</p>
<p>Our demo site will have a &#8220;news&#8221; section where users can view the latest news, and subscribe to our newsletter. This functionality will be provided through AJAX calls. Our goal is to achieve this same functionality for non-ajax-enabled browsers without duplicating a lot of work.</p>
<h3>AJAX Extensions in ASP.NET MVC</h3>
<p>If you&#8217;ve been playing around in ASP.NET MVC even a little, you likely have noticed how simple it is to use AJAX in your web app. Take for example creating a link to our &#8220;News List&#8221; page (which is actually in our demo app). To make a standard link that goes to the &#8220;News&#8221; controller and executes the &#8220;List&#8221; action would look something like this:</p>
<div><span>&lt;%</span><span>=</span> Html.ActionLink(<span>&#8220;View News&#8221;</span>, <span>&#8220;List&#8221;</span>, <span>&#8220;News&#8221;</span>) <span>%&gt;</span></div>
<p>But what would we do if we wanted that link to use AJAX to pull the latest news and update a simple &lt;div&gt; on our page? All we would have to do is use the &#8220;Ajax.ActionLink&#8221; method, and supply an extra parameter that has the &#8216;AJAX options&#8217; in there. Here&#8217;s what that would look like:</p>
<div><span>&lt;%</span><span>=</span><br />
Ajax.ActionLink(<span>&#8220;View News&#8221;</span>, <span>&#8220;List&#8221;</span>, <span>&#8220;News&#8221;</span>,<br />
<span>new</span> AjaxOptions<br />
{<br />
HttpMethod = <span>&#8220;POST&#8221;</span>,<br />
UpdateTargetId = <span>&#8220;news-list&#8221;</span>,<br />
InsertionMode = InsertionMode.Replace,<br />
})<br />
<span>%&gt;</span></div>
<p>That code will build an HTML link that also has some JavaScript in the onclick event for handling the AJAX stuff. It&#8217;s important to know that since this is a regular old HTML link, if the JavaScript part fails (either due to a bug, or if scripts are disabled), then the browser will navigate to the URL as if there was no JavaScript at all. And that brings us to the next point!</p>
<h3>Coding Your ActionMethod to Detect AJAX Requests</h3>
<p>Because one of our main goals is not to have to duplicate a lot of work, we want the same code to run for the user if he&#8217;s using AJAX or not. The only part that has to change really is the &#8220;View&#8221; that gets sent back to the client. In order to accomplish this, we&#8217;re going to use the &#8220;IsMvcAjaxRequest&#8221; method that comes in the System.Web.Mvc.Ajax namespace (in the AjaxExtensions class).</p>
<div><span>Update: Oct 22 2008</span>Originally, I didn&#8217;t know about the &#8220;IsMvcAjaxRequest&#8221; method, so I had a code snippet here that showed how to make our own method by looking for the &#8220;__MVCASYNCPOST&#8221; form field. Due to a comment below, I&#8217;ve removed the code snippet that had the extension method here.</p>
<p>As was mentioned by <a rel="nofollow" href="http://www.lostintangent.com/">Jonathan Carter</a> (who&#8217;s a Technical Evangelist for Microsoft), the MVC Beta already includes the extension method above. Now all we have to do is call the &#8220;IsMvcAjaxRequest&#8221; method. Example:</p>
<div><span>if</span> (Request.IsMvcAjaxRequest())<br />
{<span><br />
// Do async things here&#8230;</span><br />
}</div>
</div>
<p>And then to use it in our ActionMethod, here&#8217;s what we would do:</p>
<div><span>public</span> ActionResult List()<br />
{<br />
<span>this</span>.ViewData.Model = <span>this</span>.GetNewsItems();</p>
<p><span>if</span> (<span>this</span>.Request.IsMvcAjaxRequest() == <span>false</span>)<br />
{<span><br />
// Non AJAX requests see the entire ViewPage.</span><br />
<span>return</span> View();<br />
}<br />
<span>else</span><br />
{<span><br />
// AJAX requests just <span>get</span> a trimmed down UserControl.</span><br />
<span>return</span> View(<span>&#8220;List_AJAX&#8221;</span>);<br />
}<br />
}</div>
<p>Notice that we don&#8217;t have to duplicate any logic for getting the latest news. The only bit of custom logic that is needed is to determine which view to send. This can be done for form posts too (as you can see in the screen shots below or by downloading the project at the end of the article). Here&#8217;s what the results of the above will look like for an AJAX enabled, and a non-AJAX enabled browser:</p>
<p><img title="ASP.NET MVC - AJAX application that gracefully degrades part 1" src="http://www.singingeels.com/Articles/Articles/UserImage.aspx?ImageID=23d3731b-07bd-46d6-b74e-c215b65f696c" alt="ASP.NET MVC - AJAX application that gracefully degrades part 1" /></p>
<p>After clicking on the &#8220;view news&#8221; link with AJAX enabled:</p>
<p><img title="ASP.NET MVC - AJAX application that gracefully degrades part 2" src="http://www.singingeels.com/Articles/Articles/UserImage.aspx?ImageID=1f6199f8-129e-485c-a08a-8ed830114b55" alt="ASP.NET MVC - AJAX application that gracefully degrades part 2" /></p>
<p>After clicking &#8220;view news&#8221; with JavaScript (and therefore AJAX) disabled:</p>
<p><img title="ASP.NET MVC - AJAX application that gracefully degrades part 3" src="http://www.singingeels.com/Articles/Articles/UserImage.aspx?ImageID=cd8aa437-45c4-4f66-b84e-e5cd44256583" alt="ASP.NET MVC - AJAX application that gracefully degrades part 3" /></p>
<p>If you notice the URLs in the second and third screen shots, you&#8217;ll see that with AJAX disabled the browser simply navigated to where the link was pointing. Thus, a graceful degradation was achieved.</p>
<h3>Conclusion</h3>
<p>With little effort, we achieved an AJAX enabled ASP.NET MVC site, and cleanly/gracefully allowed non-AJAX users to enjoy the same benefits of our demo app. The project was written in Visual Studio 2008 SP1 with the ASP.NET MVC Beta 1 bits installed. Because the DLL&#8217;s are bin-deployed, you should be able to download and run the project even if you don&#8217;t have the MVC beta install. Check it out for yourself: <a href="http://www.singingeels.com/Articles/Articles/UserFile.aspx?FileID=997f0db8-ac1d-4405-a336-eb0b8416d12e">SingingEels_MvcAjaxMashup.zip</a></p>
<p>Source:singingeels.com</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;bodytext=As%20AJAX-enabled%20web%20sites%20continue%20to%20grow%20in%20popularity%2C%20the%20development%20community%20continues%20to%20try%20to%20solve%20the%20common%20problems%20of%20using%20AJAX.%20One%20big%20concern%20that%20used%20to%20require%20a%20lot%20of%20work%20is%20that%20of%20gracefully%20degrading%20your%20AJAX%20site%20for%20non" title="Digg"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Sphinn"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;notes=As%20AJAX-enabled%20web%20sites%20continue%20to%20grow%20in%20popularity%2C%20the%20development%20community%20continues%20to%20try%20to%20solve%20the%20common%20problems%20of%20using%20AJAX.%20One%20big%20concern%20that%20used%20to%20require%20a%20lot%20of%20work%20is%20that%20of%20gracefully%20degrading%20your%20AJAX%20site%20for%20non" title="del.icio.us"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;t=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Facebook"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Mixx"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;annotation=As%20AJAX-enabled%20web%20sites%20continue%20to%20grow%20in%20popularity%2C%20the%20development%20community%20continues%20to%20try%20to%20solve%20the%20common%20problems%20of%20using%20AJAX.%20One%20big%20concern%20that%20used%20to%20require%20a%20lot%20of%20work%20is%20that%20of%20gracefully%20degrading%20your%20AJAX%20site%20for%20non" title="Google Bookmarks"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;Title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="BlinkList"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.diigo.com/post?url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Diigo"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" /></a>
	<a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;u=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Fark"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" /></a>
	<a rel="nofollow"  target="_blank" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Faves"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/bluedot.png" title="Faves" alt="Faves" /></a>
	<a rel="nofollow"  target="_blank" href="http://laaik.it/NewStoryCompact.aspx?uri=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;headline=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;cat=5e082fcc-8a3b-47e2-acec-fdf64ff19d12" title="laaik.it"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/laaikit.png" title="laaik.it" alt="laaik.it" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;source=Tech+News%2C+Tech+Resources%2C+Technology+Articles%2C+Gadget+News%2C+Computer+News+IT+news%2C+software+technology%2C+IT+resources%2C+computer+software%2C+laptops%2C+desktops%2C++information+systems%2C++hardware+technology%2C+multimedia%2C+Windows+OS%2C+linux+clients%2C+network+solution%2C+easy+internet%2C+essential+guides%2C+domains%2C+webhosting%2C+web+program%2C+database+programming&amp;summary=As%20AJAX-enabled%20web%20sites%20continue%20to%20grow%20in%20popularity%2C%20the%20development%20community%20continues%20to%20try%20to%20solve%20the%20common%20problems%20of%20using%20AJAX.%20One%20big%20concern%20that%20used%20to%20require%20a%20lot%20of%20work%20is%20that%20of%20gracefully%20degrading%20your%20AJAX%20site%20for%20non" title="LinkedIn"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Live"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;bm_description=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;plugin=soc" title="MisterWong"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;t=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="MySpace"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.netvibes.com/share?title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Netvibes"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.netvouz.com/action/submitBookmark?url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;popup=no" title="Netvouz"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/netvouz.png" title="Netvouz" alt="Netvouz" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;h=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="NewsVine"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Propeller"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Reddit"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Slashdot"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a>
	<a rel="nofollow"  target="_blank" href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;story_title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="Socialogs"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;title=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade" title="StumbleUpon"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Technorati"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade%20-%20http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F" title="Twitter"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.comteken.com%2Fweb-programming%2Fmvc-ajax-sites-that-gracefully-degrade%2F&amp;submitHeadline=MVC%20AJAX%20Sites%20That%20Gracefully%20Degrade&amp;submitSummary=As%20AJAX-enabled%20web%20sites%20continue%20to%20grow%20in%20popularity%2C%20the%20development%20community%20continues%20to%20try%20to%20solve%20the%20common%20problems%20of%20using%20AJAX.%20One%20big%20concern%20that%20used%20to%20require%20a%20lot%20of%20work%20is%20that%20of%20gracefully%20degrading%20your%20AJAX%20site%20for%20non&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.comteken.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.comteken.com/web-programming/mvc-ajax-sites-that-gracefully-degrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

