<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by deedee</title>
    <description>Stories kicked by deedee</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>error &amp;quot;Failed to generate a user instance of SQL Server due to a...&amp;quot;</title>
      <description>Have you ever tried to create a user instance database from Visual Studio on SQL Server 2005 Express (or above) and got this terrible (can it be more confusing?) message:

&amp;quot;Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed.&amp;quot;

If you did and tried to find how to resolve this you probably Googled (or Binged) for hours without being able to find the solution that really works.

Well lets put an end to that. Two simple things need to be done...
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2ffix-error-Failed-to-generate-a-user-instance-of-SQL-Server-due-to-a-failure-in-starting-the-process-for-the-user-instance.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2ffix-error-Failed-to-generate-a-user-instance-of-SQL-Server-due-to-a-failure-in-starting-the-process-for-the-user-instance.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/error_Failed_to_generate_a_user_instance_of_SQL_Server_due_to_a</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/error_Failed_to_generate_a_user_instance_of_SQL_Server_due_to_a</guid>
      <pubDate>Sat, 20 Jun 2009 13:55:18 GMT</pubDate>
    </item>
    <item>
      <title>Ruby inspired C# Extension Methods for natural DateTime operations</title>
      <description>FluentDateTime is a open source library of Ruby inspired C# Extension Methods for easier and more natural DateTime handling and operations in .NET that allows you to write code like this:
DateTime.Now + 1.Week() + 3.Days + 14.Minutes();
3.Days().Ago();
5.Days().After(new DateTime(2000, 1, 1));
DateTime.Now.NextDay();
DateTime.Now.WeekAfter();
DateTime.Now.Midnight();
DateTime.Now.SetTime(11, 55, 0); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeplex.com%2ffluentdatetime"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeplex.com%2ffluentdatetime" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Ruby_inspired_C_Extension_Methods_for_natural_DateTime_operations</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Ruby_inspired_C_Extension_Methods_for_natural_DateTime_operations</guid>
      <pubDate>Tue, 24 Feb 2009 18:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Fun with Empty string.</title>
      <description>Which is the fastest / most readable way to compare to an Empty string? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvkreynin.wordpress.com%2f2009%2f02%2f23%2ffun-with-empty-string%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvkreynin.wordpress.com%2f2009%2f02%2f23%2ffun-with-empty-string%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Fun_with_Empty_string</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Fun_with_Empty_string</guid>
      <pubDate>Mon, 23 Feb 2009 21:16:27 GMT</pubDate>
    </item>
    <item>
      <title>How to Create a Drag &amp;amp; Drop / Move, Zoom In &amp;amp; Out Content Control </title>
      <description>As the Headline says, I will show you how to make a Drag and Drop / Move Content control. for this example I will use a canvas and an Image. But you can easily make it more generic by using a Content Control instead of the image.

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dev102.com%2f2009%2f02%2f23%2fhow-to-create-a-drag-drop-move-zoom-in-out-content-control%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dev102.com%2f2009%2f02%2f23%2fhow-to-create-a-drag-drop-move-zoom-in-out-content-control%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/How_to_Create_a_Drag_Drop_Move_Zoom_In_Out_Content_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/How_to_Create_a_Drag_Drop_Move_Zoom_In_Out_Content_Control</guid>
      <pubDate>Mon, 23 Feb 2009 22:46:03 GMT</pubDate>
    </item>
    <item>
      <title>How and when (not) to use Extension Methods in C# and .NET?</title>
      <description>Lets first briefly examine Extension Methods, show some basics usages and then we will tackle some more advanced and concrete examples used to provide fluent, natural DateTime operations (similar to Date and Time operations available in Ruby on Rails). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-and-when-to-use-Extension-Methods-in-Csharp-and-dot-NET.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-and-when-to-use-Extension-Methods-in-Csharp-and-dot-NET.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_and_when_not_to_use_Extension_Methods_in_C_and_NET</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_and_when_not_to_use_Extension_Methods_in_C_and_NET</guid>
      <pubDate>Tue, 28 Oct 2008 22:46:11 GMT</pubDate>
    </item>
    <item>
      <title>Load and Play Media Files at Runtime using Silverlight 2</title>
      <description>Sometime back, I had written a similar article Load and Play a Video File at Runtime using Silverlight 2 Beta 2. The article made use of the OpenFileDialog class in Silverlight Beta2 to load files at runtime. There have been quite a few breaking changes from Beta 2 to the final release of Silverlight. One of these changes affects Silverlight 2 application using the OpenFileDialog. In this short article, we will study these changes and explore how to load and play media files at runtime using the OpenFileDialog control using the final release of Silverlight 2. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d217"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d217" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Load_and_Play_Media_Files_at_Runtime_using_Silverlight_2</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Load_and_Play_Media_Files_at_Runtime_using_Silverlight_2</guid>
      <pubDate>Wed, 22 Oct 2008 18:16:02 GMT</pubDate>
    </item>
    <item>
      <title>A Guide to Learning ASP.NET MVC Beta 1 </title>
      <description>ASP.NET MVC Beta1 learning guide by Stephen Walther &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fstephenwalther%2farchive%2f2008%2f10%2f17%2fa-guide-to-learning-asp-net-mvc-beta-1.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fstephenwalther%2farchive%2f2008%2f10%2f17%2fa-guide-to-learning-asp-net-mvc-beta-1.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/A_Guide_to_Learning_ASP_NET_MVC_Beta_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/A_Guide_to_Learning_ASP_NET_MVC_Beta_1</guid>
      <pubDate>Fri, 24 Oct 2008 23:31:03 GMT</pubDate>
    </item>
    <item>
      <title>How to add startup JavaScript code from Content Page to Master Page?</title>
      <description>If you are creating a website that has Master and Content Pages and if you need to add some JavaScript code from your Content pages that should run when the page is loaded you fill find out that its not straightforward.
Content page do not have all the elements of HTML page like BODY tag that you could hook up to and add your script code to its onload event... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-add-startup-JavaScript-code-from-Content-Page-to-Master-Page.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-add-startup-JavaScript-code-from-Content-Page-to-Master-Page.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_add_startup_JavaScript_code_from_Content_Page_to_Master_Page</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_add_startup_JavaScript_code_from_Content_Page_to_Master_Page</guid>
      <pubDate>Sun, 10 Aug 2008 18:12:49 GMT</pubDate>
    </item>
    <item>
      <title>Add grunge effect to text using simple CSS</title>
      <description>Excellent, as usual, demonstration on how to do something pretty cool-looking using css by janko. Excellent style and idea inside... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jankoatwarpspeed.com%2fpost%2f2008%2f08%2f09%2fAdd-grunge-effect-to-text-using-simple-CSS.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jankoatwarpspeed.com%2fpost%2f2008%2f08%2f09%2fAdd-grunge-effect-to-text-using-simple-CSS.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Add_grunge_effect_to_text_using_simple_CSS</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Add_grunge_effect_to_text_using_simple_CSS</guid>
      <pubDate>Sun, 10 Aug 2008 01:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Harnessing the Power of Linq2Sqls Delayed Execution</title>
      <description>Short screencasts on harnessing the Power of Linq2Sqls Delayed Execution &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f32"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f32" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/Harnessing_the_Power_of_Linq2Sqls_Delayed_Execution</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/Harnessing_the_Power_of_Linq2Sqls_Delayed_Execution</guid>
      <pubDate>Tue, 05 Aug 2008 22:01:06 GMT</pubDate>
    </item>
    <item>
      <title>How to control ASP.NET Validators ClientSide validation from JScript?</title>
      <description>Recently I needed to disable some ASP.NET RequiredFieldValidator controls on one page depending on the user input.
This is trivial you say. But the problem was that this needed to occur instantly on Client Side based on the state of one CheckBox control and not after a full page PostBack.
There is a simple way to do this... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-control-ASP-NET-Validator-Controls-Client-Side-validation-from-JavaScript.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-control-ASP-NET-Validator-Controls-Client-Side-validation-from-JavaScript.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_control_ASP_NET_Validators_ClientSide_validation_from_JScript</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_control_ASP_NET_Validators_ClientSide_validation_from_JScript</guid>
      <pubDate>Sun, 03 Aug 2008 23:10:03 GMT</pubDate>
    </item>
    <item>
      <title>Software I can't work without </title>
      <description>I'm about to configure a new development machine this week. It's going to be my 3rd install from scratch in the last 12 months, which I know is not all that much, but certainly more than I wish I had to.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevlicio.us%2fblogs%2fsergio_pereira%2farchive%2f2008%2f07%2f31%2fsoftware-i-can-t-work-without.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevlicio.us%2fblogs%2fsergio_pereira%2farchive%2f2008%2f07%2f31%2fsoftware-i-can-t-work-without.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Software_I_can_t_work_without</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Software_I_can_t_work_without</guid>
      <pubDate>Fri, 01 Aug 2008 22:46:10 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight 2.0 - Concepts To Become A Silverlight Master (Part 3)</title>
      <description>Part 3 of the Silverlight Master Series focuses on Expression Blend and its importance in the Silverlight design process. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsilverlighthack.com%2fpost%2f2008%2f07%2f25%2fSilverlight-20-Concepts-To-Become-A-Silverlight-Master-(Series-Part-3-Blend).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsilverlighthack.com%2fpost%2f2008%2f07%2f25%2fSilverlight-20-Concepts-To-Become-A-Silverlight-Master-(Series-Part-3-Blend).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_2_0_Concepts_To_Become_A_Silverlight_Master_Part_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_2_0_Concepts_To_Become_A_Silverlight_Master_Part_3</guid>
      <pubDate>Tue, 05 Aug 2008 12:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Comparing Multiple SQL Server Datasets with the INTERSECT and EXCEPT</title>
      <description>With SQL Server 2005, Microsoft introduced the INTERSECT and EXCEPT operators to further extend what you could already do with the UNION and UNION ALL operators... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mssqltips.com%2ftip.asp%3ftip%3d1327"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mssqltips.com%2ftip.asp%3ftip%3d1327" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Comparing_Multiple_SQL_Server_Datasets_with_the_INTERSECT_and_EXCEPT</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Comparing_Multiple_SQL_Server_Datasets_with_the_INTERSECT_and_EXCEPT</guid>
      <pubDate>Thu, 15 May 2008 05:43:43 GMT</pubDate>
    </item>
    <item>
      <title>Query Composition using Functional Programming Techniques in C# 3.0</title>
      <description> This stuff is easy.  It's also really fun.  You don't have to read academic papers to learn about, enjoy, and benefit from functional programming in C# 3.0.  There are about half a dozen concepts you need to learn, each one easy.  Concepts like just a new way to write a method (that has no name), or a new way to write a static method for a class.  Then you put them all together, and the result is more than the sum of the parts. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fericwhite%2fpages%2fFP-Tutorial.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fericwhite%2fpages%2fFP-Tutorial.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/Query_Composition_using_Functional_Programming_Techniques_in_C_3_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/Query_Composition_using_Functional_Programming_Techniques_in_C_3_0</guid>
      <pubDate>Fri, 16 May 2008 01:01:02 GMT</pubDate>
    </item>
    <item>
      <title>How to Capitalize the First Letter of All Words in a string in C#</title>
      <description>Often we need to capitalize the first letters of some word or some text (for example when we want to display users name or city name etc).
Since string class does not have a method to do this we could think that there is no built-in solution in C# for this problem, but... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-Capitalize-the-First-Letter-of-All-Words-in-a-string-in-C-sharp.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-Capitalize-the-First-Letter-of-All-Words-in-a-string-in-C-sharp.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_Capitalize_the_First_Letter_of_All_Words_in_a_string_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_Capitalize_the_First_Letter_of_All_Words_in_a_string_in_C</guid>
      <pubDate>Sat, 10 May 2008 22:01:02 GMT</pubDate>
    </item>
    <item>
      <title>How to disable web.config Inheritance for Child Applications?</title>
      <description>Each ASP.NET Web Application has its own configuration file called web.config file.
In fact every directory in ASP.NET application can have one. Settings in each web.config file apply to the directory where its placed, and all the subdirectories of that directory.

This is called Configuration Inheritance and it can cause serious headaches if you are not fully aware of how it works... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fhow-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fhow-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_disable_web_config_Inheritance_for_Child_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_disable_web_config_Inheritance_for_Child_Applications</guid>
      <pubDate>Wed, 16 Apr 2008 01:01:02 GMT</pubDate>
    </item>
    <item>
      <title>6 free online editors for your asp.net project</title>
      <description>A list of web editors that can be easily embedded in your asp.net projects &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevintelligence.com%2fblogs%2fnetadventures%2farchive%2f2008%2f04%2f08%2f6-free-online-editors-for-your-asp-net-site.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevintelligence.com%2fblogs%2fnetadventures%2farchive%2f2008%2f04%2f08%2f6-free-online-editors-for-your-asp-net-site.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/6_free_online_editors_for_your_asp_net_project</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/6_free_online_editors_for_your_asp_net_project</guid>
      <pubDate>Wed, 09 Apr 2008 21:16:04 GMT</pubDate>
    </item>
    <item>
      <title>Howto get live detailed info about all online visitors of your website</title>
      <description>If you ever had 'Online visitor counter' feature on your website, at some point of time, you have undoubtedly asked yourself: 
&amp;quot;who are those 17 people that are currently browsing my precious website ?&amp;quot;  
&amp;quot;What are their IP addresses? When did they come here, what page they first opened and from where did they came from?&amp;quot;
Here is the complete tutorial on how to display detailed list of all visitor currently browsing your ASP.NET website.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-get-detailed-info-about-all-online-visitors-that-are-currently-browsing-your-ASP-NET-website.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-get-detailed-info-about-all-online-visitors-that-are-currently-browsing-your-ASP-NET-website.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Howto_get_live_detailed_info_about_all_online_visitors_of_your_website</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Howto_get_live_detailed_info_about_all_online_visitors_of_your_website</guid>
      <pubDate>Thu, 10 Apr 2008 06:16:02 GMT</pubDate>
    </item>
    <item>
      <title>A .NET Cryptography Primer, part 1</title>
      <description>First in a series of blog posts geared towards .NET developers with not much experience in Cryptography, concentrating more on code than on theory.  First installment covers managed/unmanaged and encodings. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstatestreetgang.net%2fpost.aspx%3fid%3d2351d881-632d-422d-9635-6da461511ead"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstatestreetgang.net%2fpost.aspx%3fid%3d2351d881-632d-422d-9635-6da461511ead" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/security/A_NET_Cryptography_Primer_part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/security/A_NET_Cryptography_Primer_part_1</guid>
      <pubDate>Wed, 09 Apr 2008 04:01:04 GMT</pubDate>
    </item>
    <item>
      <title>Handy list of all JavaScript KeyCodes</title>
      <description>Very often when programming in ASP.NET and ASP.NET AJAX we have to write JavaScript code.
When writing JavaScript that interacts with user we have to deal with keyboard events.

Here is the list of (almost) all JavaScript KeyCodes we could find: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fWhat-is-the-list-of-KeyCodes-for-JavaScript-KeyDown-KeyPress-and-KeyUp-events.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fWhat-is-the-list-of-KeyCodes-for-JavaScript-KeyDown-KeyPress-and-KeyUp-events.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Handy_list_of_all_JavaScript_KeyCodes</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Handy_list_of_all_JavaScript_KeyCodes</guid>
      <pubDate>Sat, 05 Apr 2008 07:46:05 GMT</pubDate>
    </item>
    <item>
      <title>Observer Pattern Revisited - Events and Delegates</title>
      <description>This article shows how to use events and delegates in the .NET Framework to simulate the Observer Design Pattern.   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jaltiere.com%2f%3fp%3d44"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jaltiere.com%2f%3fp%3d44" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Observer_Pattern_Revisited_Events_and_Delegates</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Observer_Pattern_Revisited_Events_and_Delegates</guid>
      <pubDate>Sat, 05 Apr 2008 02:31:03 GMT</pubDate>
    </item>
    <item>
      <title>How to easily insert row in GridView with SqlDataSource?</title>
      <description>Asp.Net 2.0 GridView control is very powerful control. Developers at Microsoft really did a great job when designing it.
Its like Swiss Army knife for selecting, editing, sorting, paging and displaying data.
Combined with various DataSource controls (ObjectDataSource, SqlDataSource) it helps you execute most of your Read, Update and Delete operations without writing a single line of code.
Off course, nothing is perfect. For example, creating new data is is one common task that is not so simple to accomplish with GridView.
Let see how we can easily insert new rows of data using GridView and SqlDataSource... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-insert-row-in-GridView-with-SqlDataSource.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-insert-row-in-GridView-with-SqlDataSource.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_easily_insert_row_in_GridView_with_SqlDataSource</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_easily_insert_row_in_GridView_with_SqlDataSource</guid>
      <pubDate>Wed, 02 Apr 2008 17:33:30 GMT</pubDate>
    </item>
    <item>
      <title>How to do Cross Page Postbacks in Asp.Net 2.0 - Tutorial with examples</title>
      <description>Back in the days of ASP.NET 1.x there was no easy way to make post-backs to pages different than the current page (so called Cross Page Postbacks).
From Asp.Net 2.0 this is solved with built-in features that allow  us to easily send information from one page to another.
Lets see how... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-make-Cross-Page-Postback-in-ASP-Net.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-make-Cross-Page-Postback-in-ASP-Net.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_do_Cross_Page_Postbacks_in_Asp_Net_2_0_Tutorial_with_examples</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_do_Cross_Page_Postbacks_in_Asp_Net_2_0_Tutorial_with_examples</guid>
      <pubDate>Wed, 02 Apr 2008 00:31:51 GMT</pubDate>
    </item>
    <item>
      <title>How to fix ASP.NET Ajax Rating control jump to top of page bug?</title>
      <description>This little hack shows how to overcome little bug in Asp.Net Ajax Control Toolkit Rating Control that causes focus to jump to the top of page when user clicks on the control to rate some content. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-fix-Bug-in-ASP-NET-Ajax-Rating-control-that-causes-jumping-to-the-top-of-the-page.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.aspdotnetfaq.com%2fFaq%2fHow-to-fix-Bug-in-ASP-NET-Ajax-Rating-control-that-causes-jumping-to-the-top-of-the-page.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/How_to_fix_ASP_NET_Ajax_Rating_control_jump_to_top_of_page_bug</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/How_to_fix_ASP_NET_Ajax_Rating_control_jump_to_top_of_page_bug</guid>
      <pubDate>Sat, 29 Mar 2008 02:53:45 GMT</pubDate>
    </item>
  </channel>
</rss>