<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Async in ASP.NET</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET/rss"></atom:link>
	<image>
		<url>http://media.ch9.ms/ch9/570a/cc6dcab8-f931-4efd-bea8-af169612570a/AsyncinASPNET_220.jpg</url>
		<title>Channel 9 - Async in ASP.NET</title>
		<link></link>
	</image>
	<description>Async is here and it&#39;s awesome, but how do you leverage for maximum affect in a server environment? When should you use async and what shouldn&#39;t you do to avoid headaches? Hear from the ASP.NET team about async support in ASP.NET, the features, the pitfalls and most importantly the use cases that make sense in the context of an ASP.NET application. </description>
	<link></link>
	<language>en</language>
	<pubDate>Tue, 21 May 2013 17:18:14 GMT</pubDate>
	<lastBuildDate>Tue, 21 May 2013 17:18:14 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>expected!</p><p>posted by cindywant</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634780228630274742</link>
		<pubDate>Mon, 16 Jul 2012 08:07:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634780228630274742</guid>
		<dc:creator>cindywant</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>We are waiting!</p><p>posted by WasimAlatrash</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782390813885912</link>
		<pubDate>Wed, 18 Jul 2012 20:11:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782390813885912</guid>
		<dc:creator>WasimAlatrash</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>They sessions are coming soon folks, it takes a bit of time to get them online after the event (which was yesterday).</p><p>posted by Duncanma</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782444229202932</link>
		<pubDate>Wed, 18 Jul 2012 21:40:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782444229202932</guid>
		<dc:creator>Duncanma</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[I&#39;m loving how hungry everyone is for these sessions.  I caught a few live but can&#39;t wait until they&#39;re posted.<br><br>-cheers<p>posted by Holt</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782489035404092</link>
		<pubDate>Wed, 18 Jul 2012 22:55:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782489035404092</guid>
		<dc:creator>Holt</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[Yesterday smeshterday &#58;&#41;<p>posted by Mike</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782543092217994</link>
		<pubDate>Thu, 19 Jul 2012 00:25:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634782543092217994</guid>
		<dc:creator>Mike</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>Thanks, guys! Great content!</p><p>In particular, thanks for not just showing &quot;what works&quot; but also the pitfalls. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>Just a couple of notes:</p><ol><li>WhenAll will actually return the results of those tasks. So you can replace:<br>&nbsp; &nbsp; await Task.WhenAll(results);<br>&nbsp; &nbsp; return results.Select(t =&gt; t.Result);<br>with:<br>&nbsp; &nbsp; return await Task.WhenAll(results); </li><li>I recommend that async/await users never use Task.Result (for the reasons you mentioned). There's a bit of overhead to use &quot;await task&quot; instead of &quot;task.Result&quot; on a completed Task, but the code is more obviously correct. </li></ol><p>&nbsp;</p><p>&nbsp; &nbsp; &nbsp; &nbsp;-Steve</p><p>posted by Stephen_Cleary</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634783096288077831</link>
		<pubDate>Thu, 19 Jul 2012 15:47:08 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634783096288077831</guid>
		<dc:creator>Stephen_Cleary</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>&nbsp;</p><div><p>I like seeing the love for async/await, but don't understand why the only path mentioned for using it is 4.5?</p><p>The async targeting pack is awesome! &nbsp;I'd much rather you told 4.0 peeps to use that instead of making it appear that they're stuck not being able to use async/await at all!</p><p>I'd much rather see those non-await options listed as 'stuck using VS2010' since the async targeting pack does require vs11/vs2012</p><p>&nbsp;</p><p><a href="http://nuget.org/packages/Microsoft.CompilerServices.AsyncTargetingPack/1.0.0">http&#58;&#47;&#47;nuget.org&#47;packages&#47;Microsoft.CompilerServices.AsyncTargetingPack&#47;1.0.0</a></p></div><p>posted by james.manning</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634786018915846286</link>
		<pubDate>Mon, 23 Jul 2012 00:58:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634786018915846286</guid>
		<dc:creator>james.manning</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>This is one of the most awesome recordings among all the Channel9 videos. Thanks all of you guys for an outstanding presentation and answering all of my questions during the session <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' />&nbsp;</p><p>posted by Tugberk</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634787401940809083</link>
		<pubDate>Tue, 24 Jul 2012 15:23:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634787401940809083</guid>
		<dc:creator>Tugberk</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>Thanks for making async available and easy for the 'rest' of us.</p><p>posted by dizzyguy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634788211373424002</link>
		<pubDate>Wed, 25 Jul 2012 13:52:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634788211373424002</guid>
		<dc:creator>dizzyguy</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[Thanks so much for the Virtual Conference&#33;  I was setting up my application and have been extremely intrigued by WebSockets ever since the sdk came out last year.  I am running VS12 on Windows 7 and whenever I try to run my websocket I get a &#34;The IIS WebSocket module is not enabled.&#34; error.  Where can I turn this on at&#63;  I see IIS 8 Express in my Add or Remove Programs, but can&#39;t seem to find it in my system.  I assume it was installed with VS12&#63;<p>posted by Jim Lizzi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634788395778342247</link>
		<pubDate>Wed, 25 Jul 2012 18:59:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634788395778342247</guid>
		<dc:creator>Jim Lizzi</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>Super!!!</p><p>G<span>reat event,thx... <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-11.gif?v=c9' alt='Cool' /> </span></p><p>posted by net_leo</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634789168495993332</link>
		<pubDate>Thu, 26 Jul 2012 16:27:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634789168495993332</guid>
		<dc:creator>net_leo</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>Re: Asynchronous development in VS 2010,&nbsp;Some - and by some, I mean ALL of us have existing applications - many of which are firmly planted in &lt;= Net 4.0 soil. We don't have the luxury of uprooting entire codesets overnight.</p><p>It has now been over a week. When are you going to post the video from Tibi's (@tibor19) talk??? His clever use of anonymous methods was excellent and unlike any other post/blog out there on the interwebs.</p><p>posted by DevDelimited</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634789235304796848</link>
		<pubDate>Thu, 26 Jul 2012 18:18:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634789235304796848</guid>
		<dc:creator>DevDelimited</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>@<a href="/Events/aspConf/aspConf/Async-in-ASP-NET#c634788395778342247">Jim Lizzi</a>:WebSockets in ASP.NET 4.5 requires IIS8 or IIS Express 8 on *Windows 8*. It is not available on Windows 7.</p><p>posted by DamianEdwards</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634790481931164511</link>
		<pubDate>Sat, 28 Jul 2012 04:56:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634790481931164511</guid>
		<dc:creator>DamianEdwards</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>@<a href="/Events/aspConf/aspConf/Async-in-ASP-NET#c634789235304796848">DevDelimited</a>:ok NOW I see it! It would have been helpful to categorize Day 2 sessions under Day 2.</p><p>&nbsp;</p><p><a href="http://channel9.msdn.com/Events/aspConf/aspConf/Fast-Faster-Async-ASP-NET">http://channel9.msdn.com/Events/aspConf/aspConf/Fast-Faster-Async-ASP-NET</a>&nbsp;</p><p>posted by DevDelimited</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634792526503538196</link>
		<pubDate>Mon, 30 Jul 2012 13:44:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634792526503538196</guid>
		<dc:creator>DevDelimited</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>Nice video guys. Great primer. I've never been more excited about the .net stack.</p><p>posted by christolo</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634805602473174375</link>
		<pubDate>Tue, 14 Aug 2012 16:57:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634805602473174375</guid>
		<dc:creator>christolo</dc:creator>
	</item>
	<item>
		<title>Re: Async in ASP.NET</title>
		<description>
			<![CDATA[<p>Can we use &quot;async void&quot; event handlers in web user control? I tried and failed with &quot;An asynchronous operation cannot be started at this time. Asynchronous operations may&nbsp;&nbsp; only be started within an asynchronous&nbsp; handler or module or during certain events in the Page lifecycle. If&nbsp; this exception occurred while executing a Page, ensure that the Page&nbsp; is marked &lt;%@ Page Async=&quot;true&quot; %&gt;.&quot;. And I'm pretty sure that I have enabled async for the container page.</p><p>posted by jack4it</p>]]>
		</description>
		<link>http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634979657586940284</link>
		<pubDate>Mon, 04 Mar 2013 03:49:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Events/aspConf/aspConf/Async-in-ASP-NET#c634979657586940284</guid>
		<dc:creator>jack4it</dc:creator>
	</item>
</channel>
</rss>