<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.codefounders.com/community/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>David Grey&amp;#39;s Blog : ASP .NET</title><link>http://www.codefounders.com/community/blogs/davidg/archive/tags/ASP+.NET/default.aspx</link><description>Tags: ASP .NET</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Getting into the Hive mind - IIS, Application Pools and Process Account Registry Access</title><link>http://www.codefounders.com/community/blogs/davidg/archive/2008/04/17/getting-into-the-hive-mind-iis-application-pools-and-process-account-registry-access.aspx</link><pubDate>Thu, 17 Apr 2008 20:28:12 GMT</pubDate><guid isPermaLink="false">08bbce10-cb80-401a-9af2-c22748494d7b:1205</guid><dc:creator>David</dc:creator><slash:comments>1</slash:comments><description>I came across an interesting little issue the other day which I thought I&amp;#39;d share with you in case any of you experience a similar problem. I was working with an ASP .NET application we have produced. For reasons that are too boring to explain the...(&lt;a href="http://www.codefounders.com/community/blogs/davidg/archive/2008/04/17/getting-into-the-hive-mind-iis-application-pools-and-process-account-registry-access.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.codefounders.com/community/aggbug.aspx?PostID=1205" width="1" height="1"&gt;</description><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/ASP+.NET/default.aspx">ASP .NET</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/.NET/default.aspx">.NET</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/profile/default.aspx">profile</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/security/default.aspx">security</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/Windows/default.aspx">Windows</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/IIS/default.aspx">IIS</category></item><item><title>ASP .NET ViewState Validation Errors</title><link>http://www.codefounders.com/community/blogs/davidg/archive/2008/03/22/asp-net-viewstate-validation-errors.aspx</link><pubDate>Sat, 22 Mar 2008 21:52:10 GMT</pubDate><guid isPermaLink="false">08bbce10-cb80-401a-9af2-c22748494d7b:1117</guid><dc:creator>David</dc:creator><slash:comments>2</slash:comments><description>Tess&amp;#39;s If broken it is, fix it you should blog is always good for a read. Tess is an escalation engineer in the Microsoft Product Support Service dealing with .NET and her blog has lots of good info on thorny problems that crop up now and again. I...(&lt;a href="http://www.codefounders.com/community/blogs/davidg/archive/2008/03/22/asp-net-viewstate-validation-errors.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.codefounders.com/community/aggbug.aspx?PostID=1117" width="1" height="1"&gt;</description><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/ASP+.NET/default.aspx">ASP .NET</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/viewstate/default.aspx">viewstate</category></item><item><title>What to do when the sky starts falling down</title><link>http://www.codefounders.com/community/blogs/davidg/archive/2006/05/02/27.aspx</link><pubDate>Tue, 02 May 2006 13:21:00 GMT</pubDate><guid isPermaLink="false">08bbce10-cb80-401a-9af2-c22748494d7b:27</guid><dc:creator>David</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;FONT face=Arial&gt;I came across &lt;/FONT&gt;&lt;A title="ASP.NET 2.0 Crash case study:  Unhandled exceptions" href="http://blogs.msdn.com/tess/archive/2006/04/27/584927.aspx"&gt;&lt;FONT face=Arial&gt;this post&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial&gt; about dealing with unhandled ASP .NET exceptions on the blog of one of the Microsoft escalation engineers. It also mentions a Knowledge Base article on creating a &lt;/FONT&gt;&lt;A title="Unhandled exceptions cause ASP.NET-based applications to unexpectedly quit in the .NET Framework 2.0" href="http://support.microsoft.com/?id=911816"&gt;&lt;FONT face=Arial&gt;custom HTTPHandler module &lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial&gt;to trap unhandled exceptions that may occur during the execution of an ASP .NET application. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;When we were writing the current version of Cognitio Search we put a lot of effort into adding exception handlers for a wide range of exceptions which might be caused by expected unexpected (if that makes sense) events. We also wrote a component which traps these exceptions and uses a custom work item type to log them as an error in our Team Foundation Server with full stack trace and information on the components that caused the problem. So if an exceptional but anticipated event occurs, such as the server losing contact with the Domain Controller for some reason, we will be notified of this failure via the Team Foundation Server and it will also be recorded in the event logs. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;But what happens if the sky really starts falling down around our head and something completely unexpected happens? (e.g. a sudden and catastrophic failure of the disk that holds the files of the ASP .NET web site). In this event ASP .NET will generate an exception that we currently have no mechanism to catch. Sure, an ASP .NET failure event will appear in the system event logs, but we don't get the notification or any details of the error back in our Team Foundation Server. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;Having looked at this post and the KB info on creating a custom HTTPHandler for unhandled exceptions, I think I may adapt this technique and introduce it into the next release of Cognitio Search so that any truly unexpected exceptions can be caught, diagnostic information captured and inserted into our Team Foundation work item store. This will certainly help us give better support to Cognitio users and help us get a deeper understanding of any issues that we hadn't anticipated. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;When I get round to it I'll post an article showing how we created our TFS remote bug logger using ASP .NET web services and I'll also post any modifications I make to allow it to deal with the totally unexpected ASP .NET exceptions. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;------ &lt;BR&gt;David&lt;/FONT&gt;&lt;/P&gt;
&lt;p&gt;&lt;img class="link_icon" src="http://www.codefounders.com/community/images/delicious.png" alt="del.ico.us" /&gt; &lt;a href="http://del.icio.us/post?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;tags=&amp;title=What+to+do+when+the+sky+starts+falling+down" target="_blank" mce_href="http://del.icio.us/post?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;tags=&amp;title=What+to+do+when+the+sky+starts+falling+down"&gt; del.ico.us&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/digg.png" alt="Digg It" /&gt; &lt;a href="http://digg.com/submit?phase=2&amp;url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;title=What+to+do+when+the+sky+starts+falling+down&amp;tags=" target="_blank"  mce_href="http://digg.com/submit?phase=2&amp;url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;title=What+to+do+when+the+sky+starts+falling+down&amp;tags="&gt; Digg It&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/technorati.png" alt="Technorati" /&gt; &lt;a href="http://technorati.com/cosmos/search.html?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;tags=" target="_blank" mce_href="http://technorati.com/cosmos/search.html?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;tags="&gt; Technorati&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/stumbleupon.png" alt="StumbleUpon" /&gt; &lt;a href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;Title=What+to+do+when+the+sky+starts+falling+down&amp;tags=" target="_blank" mce_href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;Title=What+to+do+when+the+sky+starts+falling+down&amp;tags="&gt; StumbleUpon&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/furl.png" alt="Furl" /&gt; &lt;a href="http://furl.net/storeIt.jsp?t=What+to+do+when+the+sky+starts+falling+down&amp;u=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;tags=" target="_blank" mce_href="http://furl.net/storeIt.jsp?t=What+to+do+when+the+sky+starts+falling+down&amp;u=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;tags="&gt; Furl&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/reddit.png" alt="reddit" /&gt; &lt;a href="http://reddit.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;title=What+to+do+when+the+sky+starts+falling+down&amp;tags=" target="_blank" mce_href="http://reddit.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2006%2f05%2f02%2f27.aspx&amp;title=What+to+do+when+the+sky+starts+falling+down&amp;tags="&gt; reddit&lt;/a&gt;&lt;/p&gt;&lt;img src="http://www.codefounders.com/community/aggbug.aspx?PostID=27" width="1" height="1"&gt;</description><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/ASP+.NET/default.aspx">ASP .NET</category><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/Software+Development/default.aspx">Software Development</category></item><item><title>Missing WebAdmin.axd in ASP .NET 2 Beta 2</title><link>http://www.codefounders.com/community/blogs/davidg/archive/2005/05/31/10.aspx</link><pubDate>Tue, 31 May 2005 16:49:00 GMT</pubDate><guid isPermaLink="false">08bbce10-cb80-401a-9af2-c22748494d7b:10</guid><dc:creator>David</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;FONT&gt;Well, after spending quite a bit of time trying to figure out why I can't access WebAdmin.axd from IIS for ASP .NET 2 projects (and having completely repaved my laptop in the process) I've finally found something that looks like an answer &lt;/FONT&gt;&lt;A href="http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.framework.aspnet/2005-05/msg01094.html"&gt;&lt;FONT&gt;here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT&gt;. According to this&amp;nbsp;posting it would appear that WebAdmin.axd was removed from beta 2, although on my installation it still works fine under Cassini just not with IIS. &lt;/FONT&gt;&lt;/P&gt; &lt;P&gt;&lt;FONT&gt;So, there's the answer. At least my laptop runs a bit faster&amp;nbsp; now that I've gotten rid of some of the crud ;-)&lt;/FONT&gt;&lt;/P&gt; &lt;P&gt;&lt;FONT&gt;--------&lt;BR&gt;&lt;/FONT&gt;&lt;FONT&gt;David&lt;/FONT&gt;&lt;/P&gt;
&lt;p&gt;&lt;img class="link_icon" src="http://www.codefounders.com/community/images/delicious.png" alt="del.ico.us" /&gt; &lt;a href="http://del.icio.us/post?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;tags=&amp;title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2" target="_blank" mce_href="http://del.icio.us/post?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;tags=&amp;title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2"&gt; del.ico.us&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/digg.png" alt="Digg It" /&gt; &lt;a href="http://digg.com/submit?phase=2&amp;url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;tags=" target="_blank"  mce_href="http://digg.com/submit?phase=2&amp;url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;tags="&gt; Digg It&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/technorati.png" alt="Technorati" /&gt; &lt;a href="http://technorati.com/cosmos/search.html?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;tags=" target="_blank" mce_href="http://technorati.com/cosmos/search.html?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;tags="&gt; Technorati&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/stumbleupon.png" alt="StumbleUpon" /&gt; &lt;a href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;Title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;tags=" target="_blank" mce_href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;Title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;tags="&gt; StumbleUpon&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/furl.png" alt="Furl" /&gt; &lt;a href="http://furl.net/storeIt.jsp?t=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;u=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;tags=" target="_blank" mce_href="http://furl.net/storeIt.jsp?t=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;u=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;tags="&gt; Furl&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/reddit.png" alt="reddit" /&gt; &lt;a href="http://reddit.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;tags=" target="_blank" mce_href="http://reddit.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f31%2f10.aspx&amp;title=Missing+WebAdmin.axd+in+ASP+.NET+2+Beta+2&amp;tags="&gt; reddit&lt;/a&gt;&lt;/p&gt;&lt;img src="http://www.codefounders.com/community/aggbug.aspx?PostID=10" width="1" height="1"&gt;</description><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/ASP+.NET/default.aspx">ASP .NET</category></item><item><title>Problems setting up ASP .NET 2.0 Beta 2</title><link>http://www.codefounders.com/community/blogs/davidg/archive/2005/05/08/13.aspx</link><pubDate>Sun, 08 May 2005 08:08:00 GMT</pubDate><guid isPermaLink="false">08bbce10-cb80-401a-9af2-c22748494d7b:13</guid><dc:creator>David</dc:creator><slash:comments>0</slash:comments><description>P&gt;&lt;FONT&gt;The DVD copies of Visual Studio 2005/ASP .NET 2.0 Beta 2 arrived in the post last week from Microsoft so I thought I'd spend some time this weekend installing them on my main development machine. The install went smoothly but the ASP .NET tab that I had seen in IIS Manager in previous ASP .NET 2.0 Beta/CTP releases was missing. The Web Site Administration&amp;nbsp;tool also failed to appear on any of the sites on the server (HTTP 404 error occured) whenever I tried to acces it.&lt;/FONT&gt;&lt;/P&gt; &lt;P&gt;&lt;FONT&gt;I found&amp;nbsp;some info on the&amp;nbsp;MSDN Product Feedback site&amp;nbsp;suggesting that you should remove all entries except 2.0.0.0 from the following registry keys:&lt;/FONT&gt;&lt;/P&gt; &lt;P&gt;&lt;SPAN&gt;Microsoft comments: If a previous version was not uninstalled correctly, please regedit eliminate all versions except &lt;B&gt;2.0&lt;/B&gt;.0.0 in the following locations:&lt;BR&gt;HKEY_CLASSES_ROOT\CLSID\{7D23CCC6-A390-406E-AB67-2F8B7558F6F6}\InprocServer32\&lt;BR&gt;HKEY_CLASSES_ROOT\CLSID\{FD5CD8B1-6FE0-44F3-BBFB-65E3655B096E} \InprocServer32\&lt;BR&gt;HKEY_CLASSES_ROOT\CLSID\{FEDB2179-2335-48F0-AA28-5CDA35A2B36D}\InprocServer32\&lt;/SPAN&gt;&lt;/P&gt; &lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;I gave it a go and found that a previous version had left some values under one of these keys. I removed the extraneous values and my ASP .NET tab magically reappeared in IIS Manager. I still haven't fixed the Web Site Administation tool issue yet but I'll let you know the solution when I do.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;&lt;FONT&gt;--------&lt;BR&gt;David&lt;/FONT&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;p&gt;&lt;img class="link_icon" src="http://www.codefounders.com/community/images/delicious.png" alt="del.ico.us" /&gt; &lt;a href="http://del.icio.us/post?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;tags=&amp;title=Problems+setting+up+ASP+.NET+2.0+Beta+2" target="_blank" mce_href="http://del.icio.us/post?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;tags=&amp;title=Problems+setting+up+ASP+.NET+2.0+Beta+2"&gt; del.ico.us&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/digg.png" alt="Digg It" /&gt; &lt;a href="http://digg.com/submit?phase=2&amp;url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;title=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;tags=" target="_blank"  mce_href="http://digg.com/submit?phase=2&amp;url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;title=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;tags="&gt; Digg It&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/technorati.png" alt="Technorati" /&gt; &lt;a href="http://technorati.com/cosmos/search.html?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;tags=" target="_blank" mce_href="http://technorati.com/cosmos/search.html?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;tags="&gt; Technorati&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/stumbleupon.png" alt="StumbleUpon" /&gt; &lt;a href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;Title=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;tags=" target="_blank" mce_href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;Title=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;tags="&gt; StumbleUpon&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/furl.png" alt="Furl" /&gt; &lt;a href="http://furl.net/storeIt.jsp?t=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;u=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;tags=" target="_blank" mce_href="http://furl.net/storeIt.jsp?t=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;u=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;tags="&gt; Furl&lt;/a&gt; | &lt;img class="link_icon" src="http://www.codefounders.com/community/images/reddit.png" alt="reddit" /&gt; &lt;a href="http://reddit.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;title=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;tags=" target="_blank" mce_href="http://reddit.com/submit?url=http%3a%2f%2fwww.codefounders.com%2fcommunity%2fblogs%2fdavidg%2farchive%2f2005%2f05%2f08%2f13.aspx&amp;title=Problems+setting+up+ASP+.NET+2.0+Beta+2&amp;tags="&gt; reddit&lt;/a&gt;&lt;/p&gt;&lt;img src="http://www.codefounders.com/community/aggbug.aspx?PostID=13" width="1" height="1"&gt;</description><category domain="http://www.codefounders.com/community/blogs/davidg/archive/tags/ASP+.NET/default.aspx">ASP .NET</category></item></channel></rss>