<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by misbaharefin</title>
    <description>Stories kicked by misbaharefin</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>Dependency Injection in ASP.NET MVC3</title>
      <description>What dependency injection means is that instead of writing code like this in your controller
 private IBlogService _BlogService;
public BlogController()
{
    _BlogService = new BlogService();
} you write code like this
 private IBlogService _BlogService;
public BlogController(IBlogService blogService)
{
    _BlogService = blogService;
} the benefits of dependency injection are your classes are not tightly coupled, are more testable, and really is pluggable.
 To enable dependency injection into your controllers in ASP.NET MVC2 you had to create a new class derived from DefaultControllerFactory and override the GetControllerInstance method to create the controller using your dependency injection container e.g. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fitworksonmymachine.wordpress.com%2f2011%2f02%2f11%2fdependency-injection-in-asp-net-mvc3%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fitworksonmymachine.wordpress.com%2f2011%2f02%2f11%2fdependency-injection-in-asp-net-mvc3%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Dependency_Injection_in_ASP_NET_MVC3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Dependency_Injection_in_ASP_NET_MVC3</guid>
      <pubDate>Fri, 11 Feb 2011 03:48:27 GMT</pubDate>
    </item>
    <item>
      <title>Aspect-Oriented Programming vs Dependency Injection</title>
      <description>Aspect-Oriented Programming and Dependency Injection are very different concepts, but there are limited cases where they fit well together. In these situations, using the AOP facility of a DI framework makes perfect sense. For other cases you have two options: abuse from dynamic proxies (a non-solution), or use of a dedicated AOP framework.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.sharpcrafters.com%2fblog%2fpost%2fAspect-Oriented-Programming-vs-Dependency-Injection.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.sharpcrafters.com%2fblog%2fpost%2fAspect-Oriented-Programming-vs-Dependency-Injection.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Aspect_Oriented_Programming_vs_Dependency_Injection</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Aspect_Oriented_Programming_vs_Dependency_Injection</guid>
      <pubDate>Fri, 10 Dec 2010 13:41:33 GMT</pubDate>
    </item>
    <item>
      <title>Free E-Books From Microsoft Press</title>
      <description>Microsoft Press has released several E-Books that people can download and get started with, I will list them with a short synopsis so that people can go and download the books that interest them. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.myanmarasp.net%2fBlog%2fpost%2fFree-E-Books-From-Microsoft-Press.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.myanmarasp.net%2fBlog%2fpost%2fFree-E-Books-From-Microsoft-Press.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Free_E_Books_From_Microsoft_Press</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Free_E_Books_From_Microsoft_Press</guid>
      <pubDate>Thu, 09 Dec 2010 10:42:34 GMT</pubDate>
    </item>
    <item>
      <title>Slash your ASP.NET compile/load time without any hard work</title>
      <description>Tips &amp;amp; tricks to make your ASP.NET development more enjoyable (cut down compilation time / first load time). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.lavablast.com%2fpost%2f2010%2f12%2f01%2fSlash-your-ASPNET-compileload-time.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.lavablast.com%2fpost%2f2010%2f12%2f01%2fSlash-your-ASPNET-compileload-time.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Slash_your_ASP_NET_compile_load_time_without_any_hard_work</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Slash_your_ASP_NET_compile_load_time_without_any_hard_work</guid>
      <pubDate>Wed, 01 Dec 2010 14:41:32 GMT</pubDate>
    </item>
    <item>
      <title>Using ModelMetaData in MVC 2 to wire up sweet jQuery awesomeness</title>
      <description>I recently came up with an approach to wiring up some jquery plugins that modify the behavior of standard input text boxes.  The approach is not original by any means.I got the idea from the built in client side validation for MVC2, which was inspired by Steve Sanderson's xVal framework.

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.lostechies.com%2fblogs%2fhex%2farchive%2f2010%2f06%2f23%2fusing-modelmetadata-in-asp-net-mvc-2-to-wire-up-sweet-jquery-awesomeness.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.lostechies.com%2fblogs%2fhex%2farchive%2f2010%2f06%2f23%2fusing-modelmetadata-in-asp-net-mvc-2-to-wire-up-sweet-jquery-awesomeness.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/Using_ModelMetaData_in_MVC_2_to_wire_up_sweet_jQuery_awesomeness</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/Using_ModelMetaData_in_MVC_2_to_wire_up_sweet_jQuery_awesomeness</guid>
      <pubDate>Thu, 28 Oct 2010 03:00:52 GMT</pubDate>
    </item>
    <item>
      <title>Cool site of the day: extensionmethod.net</title>
      <description>I was in a meeting today and the topic of extension methods was discussed. I'm a big fan of LINQ - which at the end of the day - is a collection of extension methods on IEnumerable and IEnumerable&amp;lt;T&amp;gt;. I use LINQ all of the time - but I have to profess - I probably don't utilize extension methods as a way of implementing behaviors as much as I should. Looking around the web tonight, I found this site: http://www.extensionmethod.net/. Looks like a nice clearinghouse for extension methods. Next time, before rolling your own, check out this site. Quite likely, somebody else has solved the problem for you. And - you'll likely pick up some good tips!!
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.lostechies.com%2fblogs%2fjohnvpetersen%2farchive%2f2010%2f10%2f13%2fcool-site-of-the-day-extensionmethod-net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.lostechies.com%2fblogs%2fjohnvpetersen%2farchive%2f2010%2f10%2f13%2fcool-site-of-the-day-extensionmethod-net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Cool_site_of_the_day_extensionmethod_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Cool_site_of_the_day_extensionmethod_net</guid>
      <pubDate>Fri, 22 Oct 2010 06:17:33 GMT</pubDate>
    </item>
    <item>
      <title>Practically Applying Design Patterns - Part I and II</title>
      <description>Explains the thought process behind applying design patterns &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2famazedsaint.blogspot.com%2f2008%2f01%2fdesign-patterns-part-i-and-ii.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2famazedsaint.blogspot.com%2f2008%2f01%2fdesign-patterns-part-i-and-ii.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Practically_Applying_Design_Patterns_Part_I_and_II</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Practically_Applying_Design_Patterns_Part_I_and_II</guid>
      <pubDate>Wed, 13 Oct 2010 14:15:52 GMT</pubDate>
    </item>
    <item>
      <title>Attributes Every .NET Developer Should Know About</title>
      <description>Here's a list of important .NET attributes that is commonly used in projects and proves very useful if you about them beforehand &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.devcurry.com%2f2010%2f10%2fattributes-every-net-developer-should.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.devcurry.com%2f2010%2f10%2fattributes-every-net-developer-should.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Attributes_Every_NET_Developer_Should_Know_About</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Attributes_Every_NET_Developer_Should_Know_About</guid>
      <pubDate>Fri, 08 Oct 2010 12:00:52 GMT</pubDate>
    </item>
    <item>
      <title>Ten Caching mistakes that break your app</title>
      <description>Caching frequently used objects, that are expensive to fetch from the source, makes application perform faster under high load. It helps scale an application under concurrent requests. But some hard to notice mistakes can lead the application to suffer under high load, let alone making it perform better, especially when you are using distributed caching where there's separate cache server or cache application that stores the items. Moreover, code that works fine using in-memory cache can fail when the cache is made out-of-process. Here I will show you some common distributed caching mistakes that will help you make better decision when to cache and when not to cache. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fomaralzabir.com%2ften-caching-mistakes-that-break-your-app%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fomaralzabir.com%2ften-caching-mistakes-that-break-your-app%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Ten_Caching_mistakes_that_break_your_app</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Ten_Caching_mistakes_that_break_your_app</guid>
      <pubDate>Sat, 09 Oct 2010 03:00:52 GMT</pubDate>
    </item>
    <item>
      <title>Getting rid of null checks in property chains with - but not limited t</title>
      <description>This article explains how to get rid of the annoying null checks you often have to do before you can evaluate expressions like Order.Customer.Address.ZipCode safely. The provided code builds and compiles an expression tree that does the job in an elegant and well performing manner. Specific extension methods for AutoMapper and S#arpArchitecture are provided as well. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbit.ly%2fbLJ4js"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbit.ly%2fbLJ4js" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Getting_rid_of_null_checks_in_property_chains_with_but_not_limited_t</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Getting_rid_of_null_checks_in_property_chains_with_but_not_limited_t</guid>
      <pubDate>Fri, 06 Aug 2010 13:30:52 GMT</pubDate>
    </item>
    <item>
      <title>Using delegates to eliminate duplicate code</title>
      <description>Here's a simple technique you can use to easily eliminate duplicate code. Try not to let the word "delegates" scare you away from learning the technique and I'll try to refrain from using the word "delegate" as much as possible.  I'll start small and then work my way towards a more complex example that really demonstrates its power. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2falexdresko.com%2f2010%2f07%2f27%2fusing-delegates-to-eliminate-duplicate-code%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2falexdresko.com%2f2010%2f07%2f27%2fusing-delegates-to-eliminate-duplicate-code%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Using_delegates_to_eliminate_duplicate_code</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Using_delegates_to_eliminate_duplicate_code</guid>
      <pubDate>Thu, 29 Jul 2010 17:43:03 GMT</pubDate>
    </item>
    <item>
      <title>Simplify, Shorten and Speed Up Your LINQ Statements with &amp;quot;Let&amp;quot;</title>
      <description>Details how using the &amp;quot;let&amp;quot; keyword can make your LINQ statements shorter and faster. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.nitriq.com%2fSimplifyShortenAndSpeedUpYourLINQStatementsWithLet.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.nitriq.com%2fSimplifyShortenAndSpeedUpYourLINQStatementsWithLet.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Simplify_Shorten_and_Speed_Up_Your_LINQ_Statements_with_Let</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Simplify_Shorten_and_Speed_Up_Your_LINQ_Statements_with_Let</guid>
      <pubDate>Wed, 12 May 2010 18:45:52 GMT</pubDate>
    </item>
    <item>
      <title>IQueryable Can Kill Your Dog, Steal Your Wife, Kill Your Will To Live,</title>
      <description>If you take a quick detour over to StackOverflow, you'll realize very, very quickly that, when it comes to wholly and full-heartedly screwing up your Linq to SQL statements, the screw-up almost always involves a misunderstanding of the purpose and... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.weirdlover.com%2f2010%2f05%2f11%2fiqueryable-can-kill-your-dog-steal-your-wife-kill-your-will-to-live-etc%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.weirdlover.com%2f2010%2f05%2f11%2fiqueryable-can-kill-your-dog-steal-your-wife-kill-your-will-to-live-etc%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/IQueryable_Can_Kill_Your_Dog_Steal_Your_Wife_Kill_Your_Will_To_Live</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/IQueryable_Can_Kill_Your_Dog_Steal_Your_Wife_Kill_Your_Will_To_Live</guid>
      <pubDate>Wed, 12 May 2010 19:30:52 GMT</pubDate>
    </item>
    <item>
      <title>Download Free ebook - Introducing Microsoft SQL Server 2008 R2</title>
      <description>Introducing Microsoft SQL Server 2008 R2 is a 10 chapter, 216 page book writtenby Ross Mistry and Stacia Misner. Microsoft has made it available as a free ebook  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fbeyondrelational.com%2fblogs%2fcommunity%2farchive%2f2010%2f04%2f15%2fdownload-free-ebook-introducing-microsoft-sql-server-2008-r2.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fbeyondrelational.com%2fblogs%2fcommunity%2farchive%2f2010%2f04%2f15%2fdownload-free-ebook-introducing-microsoft-sql-server-2008-r2.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Download_Free_ebook_Introducing_Microsoft_SQL_Server_2008_R2</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Download_Free_ebook_Introducing_Microsoft_SQL_Server_2008_R2</guid>
      <pubDate>Fri, 16 Apr 2010 08:45:00 GMT</pubDate>
    </item>
    <item>
      <title>How to send mail asynchronously in asp.net </title>
      <description>With Microsoft.NET Framework 2.0 everything is asynchronous and we can send mail also asynchronously. This features is very useful when you send lots of bulk mails like news letter. You don't have to wait for response from mail server and you can do other task .

Let's create a simple example to send mail. For sending mail asynchronously you need to create a event handler that will notify that mail successfully sent or some errors occurred during sending mail. Let's create a mail object and then we will send it asynchronously. You will require System.Net.Mail space to import in your page to send mail. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjalpesh.blogspot.com%2f2010%2f02%2fhow-to-send-mail-asynchronously-in.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjalpesh.blogspot.com%2f2010%2f02%2fhow-to-send-mail-asynchronously-in.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_send_mail_asynchronously_in_asp_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_send_mail_asynchronously_in_asp_net</guid>
      <pubDate>Thu, 25 Feb 2010 19:00:19 GMT</pubDate>
    </item>
    <item>
      <title>Cartoon. Tetris development</title>
      <description>Next comic strip about programmers' fail. Guess what's wrong before reading the notes? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhacktoons.com%2f2010%2f02%2ftetris-development%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhacktoons.com%2f2010%2f02%2ftetris-development%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Cartoon_Tetris_development</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Cartoon_Tetris_development</guid>
      <pubDate>Fri, 26 Feb 2010 15:45:01 GMT</pubDate>
    </item>
    <item>
      <title>Stored Procedure Optimization Tips - Best Practices</title>
      <description>Key Points discussed in the articles are :

   1. Include SET NOCOUNT ON statement
   2. Use schema name with object name
   3. Do not use the prefix "sp_" in the stored procedure name
   4. Use IF EXISTS (SELECT 1) instead of (SELECT *)
   5. Try to avoid using SQL Server cursors whenever possible
   6. Keep the Transaction as short as possible
   7. Use TRY-Catch for error handling
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.sqlauthority.com%2f2010%2f02%2f16%2fsql-server-stored-procedure-optimization-tips-best-practices%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.sqlauthority.com%2f2010%2f02%2f16%2fsql-server-stored-procedure-optimization-tips-best-practices%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Stored_Procedure_Optimization_Tips_Best_Practices</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Stored_Procedure_Optimization_Tips_Best_Practices</guid>
      <pubDate>Thu, 18 Feb 2010 06:45:06 GMT</pubDate>
    </item>
    <item>
      <title>60+ .Net libraries every developer should know about</title>
      <description>Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I've found some of these libraries invaluable, so I'm sharing them for some of the other dev's out there with a brief outline of how to use. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.webdistortion.com%2f2010%2f02%2f16%2f60-net-libraries-every-developer-should-know-about%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.webdistortion.com%2f2010%2f02%2f16%2f60-net-libraries-every-developer-should-know-about%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/60_Net_libraries_every_developer_should_know_about</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/60_Net_libraries_every_developer_should_know_about</guid>
      <pubDate>Wed, 17 Feb 2010 12:45:03 GMT</pubDate>
    </item>
    <item>
      <title>Solution for Master Page Image Display Problem in Asp.net</title>
      <description>A simple solution to problem is to define relative path for images inside master page. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.wickasitha.com%2fsolution-for-master-page-image-display-problem-in-aspnet%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.wickasitha.com%2fsolution-for-master-page-image-display-problem-in-aspnet%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Solution_for_Master_Page_Image_Display_Problem_in_Asp_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Solution_for_Master_Page_Image_Display_Problem_in_Asp_net</guid>
      <pubDate>Tue, 09 Feb 2010 09:15:39 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio 2010 and .NET Framework 4 RC Now Available</title>
      <description>Today, we are making available the Release Candidate (RC) for Visual Studio 2010 and .NET Framework 4 to all MSDN subscribers.  The RC will be made available to the world on Wednesday, February 10th.  The RC includes a go-live license for people who want to deploy in their production environment. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fsomasegar%2farchive%2f2010%2f02%2f08%2fvisual-studio-2010-and-net-framework-4-release-candidate-now-available.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fsomasegar%2farchive%2f2010%2f02%2f08%2fvisual-studio-2010-and-net-framework-4-release-candidate-now-available.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_and_NET_Framework_4_RC_Now_Available</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_2010_and_NET_Framework_4_RC_Now_Available</guid>
      <pubDate>Fri, 12 Feb 2010 19:30:01 GMT</pubDate>
    </item>
    <item>
      <title>The Basics of Mapping Objects to a Database using Fluent nHibernate</title>
      <description>In this post I'll be taking a look at how we can set up mappings between regular .Net objects and database tables using Fluent nHibernate. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mattlong.com.au%2f%3fp%3d77"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mattlong.com.au%2f%3fp%3d77" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/The_Basics_of_Mapping_Objects_to_a_Database_using_Fluent_nHibernate</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/The_Basics_of_Mapping_Objects_to_a_Database_using_Fluent_nHibernate</guid>
      <pubDate>Mon, 08 Feb 2010 19:11:17 GMT</pubDate>
    </item>
    <item>
      <title>To Use OSS or Not to Use?</title>
      <description>This post is a result of a very big discussion I had with a customer that I'm currently consulting for. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2fgilf%2farchive%2f2010%2f02%2f03%2fto-use-oss-or-not-to-use.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.microsoft.co.il%2fblogs%2fgilf%2farchive%2f2010%2f02%2f03%2fto-use-oss-or-not-to-use.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/To_Use_OSS_or_Not_to_Use</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/To_Use_OSS_or_Not_to_Use</guid>
      <pubDate>Wed, 03 Feb 2010 12:44:50 GMT</pubDate>
    </item>
    <item>
      <title>Improving The Code I Write</title>
      <description>Something has recently been coming up that has captured my attention: "Code Smells".  By Code smells I mean the ability to look or evaluate any piece of code that has been written and assess its value based on a number of indicators. 

The question that started me on this path is: "How many developers look at ways of improving the way they write code?". &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.makecodingeasy.com%2f%3fp%3d56"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.makecodingeasy.com%2f%3fp%3d56" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Improving_The_Code_I_Write</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Improving_The_Code_I_Write</guid>
      <pubDate>Wed, 03 Feb 2010 09:34:08 GMT</pubDate>
    </item>
    <item>
      <title>Take Control of Your Web.Config</title>
      <description>After reading a Paul Sheriff article in CODE Magazine, I ended up creating a base WebConfig class to handle getting values out of my web.config. I've hated the ConfigurationManager.AppSettings since they deprecated it from ConfigurationSettings.AppSettings. So now I have my own GetAppSetting so I never have to worry about it again.  My base class looks like this: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fderans.blogspot.com%2f2010%2f02%2ftake-control-of-your-webconfig.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fderans.blogspot.com%2f2010%2f02%2ftake-control-of-your-webconfig.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Take_Control_of_Your_Web_Config</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Take_Control_of_Your_Web_Config</guid>
      <pubDate>Tue, 09 Feb 2010 16:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Refactoring for Unit Testing</title>
      <description>How to go about re-factoring existing code to support unit-testing. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnizarnoorani.com%2findex.php%2farchives%2f173"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnizarnoorani.com%2findex.php%2farchives%2f173" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Refactoring_for_Unit_Testing</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Refactoring_for_Unit_Testing</guid>
      <pubDate>Mon, 01 Feb 2010 23:32:01 GMT</pubDate>
    </item>
  </channel>
</rss>
