<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by madskristensen</title>
    <description>Stories kicked by madskristensen</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>Web Essentials and CSSCop for Visual Studio 2010 </title>
      <description>This post discuss about new features in Web Essentials extension and Image optimizer which helps developers to write web applications faster. A new extension CSSCop which is a FXCop for style sheets. You can download the Web Essentials for Visual Studio 2010 here. The CSSCop can be download from here. Download link for Image Optimizer is here. You can read my previous post on Web Standards update here to refresh your memories.	 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.techbubbles.com%2fvisual-studio-2010%2fweb-essentials-and-csscop-for-visual-studio-2010%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.techbubbles.com%2fvisual-studio-2010%2fweb-essentials-and-csscop-for-visual-studio-2010%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/products/Web_Essentials_and_CSSCop_for_Visual_Studio_2010</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/products/Web_Essentials_and_CSSCop_for_Visual_Studio_2010</guid>
      <pubDate>Mon, 06 Feb 2012 19:17:25 GMT</pubDate>
    </item>
    <item>
      <title>List of active extensions in BlogEngine.NET</title>
      <description>I have included a new page to my blog to show a list of all active BlogEngine.NET extensions. Most users will recognize this table from the admin panel but without priority, viewing sourcecode and (de-)activate buttons. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgordon-breuer.de%2fpost%2f2009%2f12%2f29%2fList-of-active-extensions-in-BlogEngineNET.aspx%23addilang"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgordon-breuer.de%2fpost%2f2009%2f12%2f29%2fList-of-active-extensions-in-BlogEngineNET.aspx%23addilang" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/List_of_active_extensions_in_BlogEngine_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/List_of_active_extensions_in_BlogEngine_NET</guid>
      <pubDate>Tue, 29 Dec 2009 15:57:22 GMT</pubDate>
    </item>
    <item>
      <title>Use Google's Closure Compiler in C#</title>
      <description>A very simple and small C# class for utilizing the Google Closure Compiler API for minifying JavaScript. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmadskristensen.net%2fpost%2fUse-Googles-Closure-Compiler-in-C.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmadskristensen.net%2fpost%2fUse-Googles-Closure-Compiler-in-C.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Use_Google_s_Closure_Compiler_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Use_Google_s_Closure_Compiler_in_C</guid>
      <pubDate>Tue, 10 Nov 2009 07:30:00 GMT</pubDate>
    </item>
    <item>
      <title>New Eco Theme For BlogEngine.NET</title>
      <description>We have released the first of many new themes for BlogEngine.NET 1.5 (SubText version to follow soon) - The n3o Eco theme, it's various tones of green and features some fancy swirly graphics &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.n3o.co.uk%2fpost%2f53_new-eco-theme-for-blogengine-net.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.n3o.co.uk%2fpost%2f53_new-eco-theme-for-blogengine-net.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/New_Eco_Theme_For_BlogEngine_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/New_Eco_Theme_For_BlogEngine_NET</guid>
      <pubDate>Fri, 12 Jun 2009 23:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Get last-modified header from response in ASP.NET</title>
      <description>I've been working lately with some ASP.NET performance optimization automation HTTP modules. In one of them I needed to know if the last-modified header had been set through the Response.Cache.SetLastModified(DateTime) method. For some reason, there is no API available anywhere within the BCL to retrieve the last modified date of a response - you can only set it.

Since the module wouldn't work without a way to read the last modified date of the response, I had to use Reflector to figure out how to pull the information out using reflection. The result became a simple little method to retrieve the date &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmadskristensen.net%2fpost%2fGet-last-modified-header-from-response-in-ASPNET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmadskristensen.net%2fpost%2fGet-last-modified-header-from-response-in-ASPNET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Get_last_modified_header_from_response_in_ASP_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Get_last_modified_header_from_response_in_ASP_NET</guid>
      <pubDate>Fri, 22 May 2009 01:58:01 GMT</pubDate>
    </item>
    <item>
      <title>BlogEngine.NET 1.5 final release</title>
      <description>BlogEngine.NET 1.5 final release announcement &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmadskristensen.net%2fpost%2fBlogEngineNET-15-final-release.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmadskristensen.net%2fpost%2fBlogEngineNET-15-final-release.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/BlogEngine_NET_1_5_final_release</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/BlogEngine_NET_1_5_final_release</guid>
      <pubDate>Tue, 14 Apr 2009 19:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Announcing BlogEngine.NET 1.5 Release Candidate</title>
      <description>We are very happy to make available a release candidate for BlogEngine.NET 1.5 today. Version 1.5 has been in the works for a long time and we decided to make a release candidate available before me make the final release this time around.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetblogengine.net%2fpost%2fAnnouncing-BlogEngineNET-15-Release-Candidate.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetblogengine.net%2fpost%2fAnnouncing-BlogEngineNET-15-Release-Candidate.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Announcing_BlogEngine_NET_1_5_Release_Candidate</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Announcing_BlogEngine_NET_1_5_Release_Candidate</guid>
      <pubDate>Sat, 11 Apr 2009 15:31:15 GMT</pubDate>
    </item>
    <item>
      <title>BlogEngine.NET code formatter extension shows code tag</title>
      <description>Nice community fix for the code formatter in BlogEngine &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flovetocode.net%2flovetocode%2fpost%2f2008%2f11%2f09%2fBlogEngineNET-code-formatter-extension-shows-code-tag.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flovetocode.net%2flovetocode%2fpost%2f2008%2f11%2f09%2fBlogEngineNET-code-formatter-extension-shows-code-tag.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/BlogEngine_NET_code_formatter_extension_shows_code_tag</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/BlogEngine_NET_code_formatter_extension_shows_code_tag</guid>
      <pubDate>Thu, 26 Mar 2009 08:47:26 GMT</pubDate>
    </item>
    <item>
      <title>Using Windows Live Writer with BlogEngine.net</title>
      <description>Using the built-in blog entry tools in BlogEngine.net works just fine, but I have come to like Windows Live Writer better. It just seems to make things just a little bit easier. Here are some very simple instructions on how to get Windows Live Writer working for BlogEngine.net &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.chadgreen.com%2fpost%2f2009%2f02%2f22%2fUsing-Windows-Live-Writer-with-BlogEnginenet.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.chadgreen.com%2fpost%2f2009%2f02%2f22%2fUsing-Windows-Live-Writer-with-BlogEnginenet.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Using_Windows_Live_Writer_with_BlogEngine_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Using_Windows_Live_Writer_with_BlogEngine_net</guid>
      <pubDate>Mon, 23 Feb 2009 22:31:02 GMT</pubDate>
    </item>
    <item>
      <title>SociableBE-Extension for BlogEngine.NET</title>
      <description>Social bookmarking sites allow websurfers to save, catalog, and share interesting pages they find online. The SociableBE-Extension appends links for your readers to use those sites to the end of each of your blog's posts, increasing your potential audience. While Sociable is originally developed as a Wordpress-Plugin in PHP, SociableBE is based on the main idea but re-developed for BlogEngine.NET in C# and with a simple copy'n'paste installation. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgordon-breuer.de%2fpost%2f2009%2f02%2f15%2fSociableBE-Extension-for-BlogEngineNET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgordon-breuer.de%2fpost%2f2009%2f02%2f15%2fSociableBE-Extension-for-BlogEngineNET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/SociableBE_Extension_for_BlogEngine_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/SociableBE_Extension_for_BlogEngine_NET</guid>
      <pubDate>Sat, 21 Feb 2009 18:46:12 GMT</pubDate>
    </item>
    <item>
      <title>WebForms or MVC? What about the third option?</title>
      <description>I've read a lot of posts and articles about why and when you should choose WebForms or the MVC framework to build your ASP.NET websites. They are all pretty good, but for some reason they forget or ignore the obvious third option - standard ASP.NET without the WebForm. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fWebForms-or-MVC-What-about-the-third-option.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fWebForms-or-MVC-What-about-the-third-option.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/WebForms_or_MVC_What_about_the_third_option</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/WebForms_or_MVC_What_about_the_third_option</guid>
      <pubDate>Fri, 13 Feb 2009 03:01:19 GMT</pubDate>
    </item>
    <item>
      <title>Conditional IE CSS Hack</title>
      <description>Great little CSS hack for IE browsers, especially when IE6 browsers are causing problems.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.geekzilla.co.uk%2fViewAEFC699F-A7ED-477F-90A0-F7725673D869.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.geekzilla.co.uk%2fViewAEFC699F-A7ED-477F-90A0-F7725673D869.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ie/Conditional_IE_CSS_Hack</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ie/Conditional_IE_CSS_Hack</guid>
      <pubDate>Tue, 03 Feb 2009 01:14:21 GMT</pubDate>
    </item>
    <item>
      <title>A .NET Open Source Project Retrospective: Json.NET</title>
      <description>A look inside the development of a .NET open source project. What went right and what went wrong and lessons learnt along the way. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjames.newtonking.com%2farchive%2f2009%2f02%2f02%2fa-net-open-source-project-retrospective-json-net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjames.newtonking.com%2farchive%2f2009%2f02%2f02%2fa-net-open-source-project-retrospective-json-net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/A_NET_Open_Source_Project_Retrospective_Json_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/A_NET_Open_Source_Project_Retrospective_Json_NET</guid>
      <pubDate>Mon, 02 Feb 2009 23:16:18 GMT</pubDate>
    </item>
    <item>
      <title>Horrible Code Example</title>
      <description>why would someone ever do this. I know I'm not the best coder out there...but really.... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.xdevsoftware.com%2fblog%2fpost%2fHorrible-Code-Example.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.xdevsoftware.com%2fblog%2fpost%2fHorrible-Code-Example.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Horrible_Code_Example</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Horrible_Code_Example</guid>
      <pubDate>Thu, 29 Jan 2009 20:32:58 GMT</pubDate>
    </item>
    <item>
      <title>Checklist for high quality websites part 2</title>
      <description>The second part of the checklist is about server side code and security &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fChecklist-for-high-quality-websites-part-2.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fChecklist-for-high-quality-websites-part-2.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Checklist_for_high_quality_websites_part_2</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Checklist_for_high_quality_websites_part_2</guid>
      <pubDate>Thu, 29 Jan 2009 22:31:02 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET application lockdown on IIS 7</title>
      <description>&amp;quot;With IIS 7 it is now easier than ever to customize the inner workings of ASP.NET applications using only the web.config. It is possible to remove all the features but the ones the specific application uses. In other words, we are able to lock down our applications and only turn on the features we need. The reason to do this is to reduce the attack surface of the application as well as stay in total control all the way from the IIS and into the ASP.NET application.&amp;quot; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fASPNET-application-lockdown-on-IIS-7.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fASPNET-application-lockdown-on-IIS-7.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_application_lockdown_on_IIS_7</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_application_lockdown_on_IIS_7</guid>
      <pubDate>Sat, 24 Jan 2009 03:31:47 GMT</pubDate>
    </item>
    <item>
      <title>What Part Of The Process Are Your Tools Optimized For?</title>
      <description>I'm writing this post because I am getting tired and weary of people pointing to &amp;quot;drag and drop tools&amp;quot;, &amp;quot;visual designers&amp;quot;, and &amp;quot;wizards&amp;quot; as reasons to use a particular tool. Only in Microsoft-land are developers so enamored with &amp;quot;wizards&amp;quot; and &amp;quot;drag and drop&amp;quot; and I think this is because Microsoft is the proverbial &amp;quot;crack dealer&amp;quot; when it comes to providing these tools. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2009%2f01%2f23%2fWhat-Part-Of-The-Process-Are-Your-Tools-Optimized-For.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2009%2f01%2f23%2fWhat-Part-Of-The-Process-Are-Your-Tools-Optimized-For.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/What_Part_Of_The_Process_Are_Your_Tools_Optimized_For</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/What_Part_Of_The_Process_Are_Your_Tools_Optimized_For</guid>
      <pubDate>Sat, 24 Jan 2009 02:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Checklist for high quality websites</title>
      <description>A checklist for things to do that will highten the quality of any website. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fChecklist-for-better-quality-websites.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.madskristensen.dk%2fpost%2fChecklist-for-better-quality-websites.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Checklist_for_high_quality_websites</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Checklist_for_high_quality_websites</guid>
      <pubDate>Tue, 27 Jan 2009 08:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Search Engine friendly error handling</title>
      <description>Explains best practices of error handling in ASP.NET web application considering being search engines friendly. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.turlov.com%2f2009%2f01%2fsearch-engine-friendly-error-handling.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.turlov.com%2f2009%2f01%2fsearch-engine-friendly-error-handling.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Search_Engine_friendly_error_handling</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Search_Engine_friendly_error_handling</guid>
      <pubDate>Fri, 16 Jan 2009 18:46:13 GMT</pubDate>
    </item>
    <item>
      <title>Migrating to Blogengine.net</title>
      <description>One bloggers experience moving to blogengine.net and customizing it to meet his needs. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevlicio.us%2fblogs%2fcasey%2farchive%2f2008%2f10%2f27%2fblogengine-net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevlicio.us%2fblogs%2fcasey%2farchive%2f2008%2f10%2f27%2fblogengine-net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Migrating_to_Blogengine_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Migrating_to_Blogengine_net</guid>
      <pubDate>Wed, 14 Jan 2009 08:06:42 GMT</pubDate>
    </item>
    <item>
      <title>Akismet Extension Updated for BlogEngine.net 1.4</title>
      <description>comment spam filter for blogengine.net 1.4!! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2008%2f07%2fAkismet-Extension-Updated-for-BlogEnginenet-14.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2008%2f07%2fAkismet-Extension-Updated-for-BlogEnginenet-14.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Akismet_Extension_Updated_for_BlogEngine_net_1_4</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Akismet_Extension_Updated_for_BlogEngine_net_1_4</guid>
      <pubDate>Wed, 07 Jan 2009 04:39:20 GMT</pubDate>
    </item>
    <item>
      <title>BlogEngine.NET extension: Detailed Download Counter</title>
      <description>A detailed download counter extension for BlogEngine.NET 1.4.* that registers all downloads on your blog and shows you detailed information about the downloads itself. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.catenalogic.com%2fpost%2f2009%2f01%2f01%2fBlogEngineNET-extension-Detailed-Download-Counter.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.catenalogic.com%2fpost%2f2009%2f01%2f01%2fBlogEngineNET-extension-Detailed-Download-Counter.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/BlogEngine_NET_extension_Detailed_Download_Counter</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/BlogEngine_NET_extension_Detailed_Download_Counter</guid>
      <pubDate>Wed, 07 Jan 2009 00:34:00 GMT</pubDate>
    </item>
    <item>
      <title>iPhone adapted &amp;quot;Mobile&amp;quot; theme for BlogEngine</title>
      <description>Just a quick entry for anyone wanting to optimize the &amp;quot;Mobile&amp;quot; theme in BlogEngine.net for the iPhone (or iTouch).  Here are some additions I had to make in order to make it all fly. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetblogger.com%2fpost%2f2009%2f01%2f05%2fiPhone-adapted-Mobile-theme-for-BlogEngine.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetblogger.com%2fpost%2f2009%2f01%2f05%2fiPhone-adapted-Mobile-theme-for-BlogEngine.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/iPhone_adapted_Mobile_theme_for_BlogEngine</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/iPhone_adapted_Mobile_theme_for_BlogEngine</guid>
      <pubDate>Tue, 06 Jan 2009 11:20:34 GMT</pubDate>
    </item>
    <item>
      <title>BlogEngine: Author View Control</title>
      <description>For those who want to be able to utilize the profile section of BlogEngine.net.  Here is a handy way to generate an &amp;quot;About Us&amp;quot; page. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetblogger.com%2fpost%2f2008%2f12%2f30%2fBlogEngine-Author-View-Control.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetblogger.com%2fpost%2f2008%2f12%2f30%2fBlogEngine-Author-View-Control.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/community/BlogEngine_Author_View_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/community/BlogEngine_Author_View_Control</guid>
      <pubDate>Thu, 01 Jan 2009 02:01:13 GMT</pubDate>
    </item>
    <item>
      <title>DotNetKicks And AddToAny Buttons Extension For BlogEngine</title>
      <description>Here is a very useful Extension for BlogEngine in order to simply Add DotNetKicks Button and also AddToAny Features (Share and Subscribe) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.sb2.fr%2fpost%2f2008%2f12%2f29%2fDotNetKicks-and-AddToAny-Buttons-Extension-For-BlogEngine.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.sb2.fr%2fpost%2f2008%2f12%2f29%2fDotNetKicks-and-AddToAny-Buttons-Extension-For-BlogEngine.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/DotNetKicks_And_AddToAny_Buttons_Extension_For_BlogEngine</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/DotNetKicks_And_AddToAny_Buttons_Extension_For_BlogEngine</guid>
      <pubDate>Tue, 30 Dec 2008 01:20:22 GMT</pubDate>
    </item>
  </channel>
</rss>
