<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by Abdur123</title>
    <description>Stories kicked by Abdur123</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>Introducing Fluent MetadataProvider for ASP.NET MVC - Kazi</title>
      <description>I have just included a Fluent Metadata provider in my open source System.Web.Mvc.Extensibility project. Currently it contains all of the features of the Built-in DataAnnotations Metadata provider that comes with the ASP.NET MVC 2 framework. Consider it as a holiday special from me for the ASP.NET MVC community :-). The main reason I am no... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f12%2f24%2fintroducing-fluent-metadataprovider-for-asp-net-mvc.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f12%2f24%2fintroducing-fluent-metadataprovider-for-asp-net-mvc.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Introducing_Fluent_MetadataProvider_for_ASP_NET_MVC_Kazi</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Introducing_Fluent_MetadataProvider_for_ASP_NET_MVC_Kazi</guid>
      <pubDate>Sat, 26 Dec 2009 11:15:02 GMT</pubDate>
    </item>
    <item>
      <title>More on Fluent MetadataProvider for ASP.NET MVC - Kazi Manzur Rashid</title>
      <description>In my last post, one of the thing you complained about the maintaining view model meta data configuration in two separate place and I admit this becomes a pain when you skim through the codes. I have changed the  implementation, so now you will be able to configure the meta data very much like the Fluent NHibernate or Entity Framework 4.0 Code ... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f12%2f25%2fmore-on-fluent-metadataprovider-for-asp-net-mvc.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f12%2f25%2fmore-on-fluent-metadataprovider-for-asp-net-mvc.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/More_on_Fluent_MetadataProvider_for_ASP_NET_MVC_Kazi_Manzur_Rashid</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/More_on_Fluent_MetadataProvider_for_ASP_NET_MVC_Kazi_Manzur_Rashid</guid>
      <pubDate>Sat, 26 Dec 2009 12:00:01 GMT</pubDate>
    </item>
    <item>
      <title>XNA Game Development (Decentralize)</title>
      <description>In the previous post, we have talked about drawing and moving 2D textures on the XNA window. In this post, we will explore the basic architecture that XNA uses in order to separate the game logic from the sprite logic. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.progware.org%2fBlog%2fpost%2fXNA-Game-Development-(Decentralize).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.progware.org%2fBlog%2fpost%2fXNA-Game-Development-(Decentralize).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/xna/XNA_Game_Development_Decentralize</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/xna/XNA_Game_Development_Decentralize</guid>
      <pubDate>Fri, 25 Dec 2009 16:34:07 GMT</pubDate>
    </item>
    <item>
      <title>Meet my new ASP.NET MVC Extension - System.Web.Mvc-Kazi Manzur Rashid</title>
      <description>After hearing Phil Haack and Scott Hanselman in their latest podcast and PDC session I decided to give a good look at the MvcTrubine project in this weekend. I totally agree the intend of this project, let your favorite IoC to rule everywhere, but I do not think it has been implemented in the correct way. There are three important design flaws that I found in MvcTurbine: Generic Component Registration API

Rather than allowing you to use your preferred IoC registration features, it prefers to use its own generic syntax for component registration, which is simply wrong. In real application, we need more support from our IoC such as lifetime management, auto wiring, modularity like (Ninject/Autfac Modules, StructureMap Registry) etc. In case of this generic API we have to throw away the features of these IoCs. Missing Common Service Locator

I think the Common Service Locator(CSL) has become the standard to abstract the underlying IoC from your application code and all the popular IoCs in .NET world has an adapter for CSL. But rather than using/extending it, it has its own version of service locator. Limited support for Action Filter injection

It uses a host kinda Attribute to inject the dependencies into the actual action filter attribute and this host is not capable of passing the attribute specific values to the actual attribute and even if this feature is implemented in the future it will be based upon the string based property name which would work on top of reflection.

Now, lets see how my new extension solves the above issues and how easily you can start plugging it in your application. First lets take a quick look of the project structure of this extension.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f12%2f14%2fmeet-my-new-asp-net-mvc-extension-system-web-mvc-extensibility.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f12%2f14%2fmeet-my-new-asp-net-mvc-extension-system-web-mvc-extensibility.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Meet_my_new_ASP_NET_MVC_Extension_System_Web_Mvc_Kazi_Manzur_Rashid</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Meet_my_new_ASP_NET_MVC_Extension_System_Web_Mvc_Kazi_Manzur_Rashid</guid>
      <pubDate>Tue, 15 Dec 2009 08:15:00 GMT</pubDate>
    </item>
    <item>
      <title>What's Jagged Array in .Net ?</title>
      <description>Its showing a demo about jagged array in .net &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog-dotnethelp.blogspot.com%2f2009%2f11%2fwhats-jagged-array-in-net.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog-dotnethelp.blogspot.com%2f2009%2f11%2fwhats-jagged-array-in-net.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/What_s_Jagged_Array_in_Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/What_s_Jagged_Array_in_Net</guid>
      <pubDate>Mon, 30 Nov 2009 09:38:10 GMT</pubDate>
    </item>
    <item>
      <title>ASP.Net Test</title>
      <description>ASP.Net  ..  this Test  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fahmedmoosa.wordpress.com%2f2009%2f11%2f28%2fweb-config-anthology-part-2%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fahmedmoosa.wordpress.com%2f2009%2f11%2f28%2fweb-config-anthology-part-2%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_Net_Test</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_Net_Test</guid>
      <pubDate>Mon, 30 Nov 2009 07:14:29 GMT</pubDate>
    </item>
    <item>
      <title>Telerik ASP.NET MVC Grid Preview (Take 2) - Kazi Manzur Rashid</title>
      <description>

In the last post, I have shown you how you can extend the ASP.NET MVC2 templates and some of the issues of the current beta. In this post, I will show you how we are taking advantages of the new DisplayFor/EditorFor in our MVC Grid. One of the benefit of using those statements in our grid is, you can host any kind of component in an individual cell, obviously the first two components will be the DateTimePicker and NumericTextBox that we are going to include in our next release.

One of the most requested feature since our last release is the inline editing support in the grid. In this, I will show you the inline editing of product of my last post, but this time with our Grid. The Grid should support both server and ajax editing, but in this example we will only discuss the server.....
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f29%2ftelerik-asp-net-mvc-grid-preview-take-2.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f29%2ftelerik-asp-net-mvc-grid-preview-take-2.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Telerik_ASP_NET_MVC_Grid_Preview_Take_2_Kazi_Manzur_Rashid</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Telerik_ASP_NET_MVC_Grid_Preview_Take_2_Kazi_Manzur_Rashid</guid>
      <pubDate>Mon, 30 Nov 2009 10:30:00 GMT</pubDate>
    </item>
    <item>
      <title>3XH Silverlight HighScore and in game Achievement API is now available</title>
      <description>3XH system allows Silverlight game developers to work with high scores and user achievements without the hassle of building and maintaining the framework and the system to support them. The system was in closed beta testing for several weeks and is now available to Silverlight game developers to integrate into new and existing Silverlight games. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.apijunkie.com%2fAPIJunkie%2fblog%2fpost%2f2009%2f11%2f3XH-Silverlight-high-score-and-in-game-achievement-API-is-now-available-to-developers.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.apijunkie.com%2fAPIJunkie%2fblog%2fpost%2f2009%2f11%2f3XH-Silverlight-high-score-and-in-game-achievement-API-is-now-available-to-developers.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/3XH_Silverlight_HighScore_and_in_game_Achievement_API_is_now_available</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/3XH_Silverlight_HighScore_and_in_game_Achievement_API_is_now_available</guid>
      <pubDate>Fri, 27 Nov 2009 22:00:48 GMT</pubDate>
    </item>
    <item>
      <title>KiGG Design And Architecture - Part 2 Project Structure</title>
      <description>In part 1 I talked about KiGG high level architecture. In this part I am going to talk about KiGG project structure and summarize the purpose of each project in the solution. I'll not go into deep details of each project. I'll save that for some other posts, just be patient with me and stay tuned. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmosesofegypt.net%2fpost%2fKiGG-Design-And-Architecture-e28093-Part-2-Project-Structure.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmosesofegypt.net%2fpost%2fKiGG-Design-And-Architecture-e28093-Part-2-Project-Structure.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/KiGG_Design_And_Architecture_Part_2_Project_Structure</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/KiGG_Design_And_Architecture_Part_2_Project_Structure</guid>
      <pubDate>Sat, 28 Nov 2009 17:15:00 GMT</pubDate>
    </item>
    <item>
      <title>The Evolution of c#</title>
      <description>The Evolution of C# FROM 1 To 4 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog-mstechnology.blogspot.com%2f2009%2f11%2fevolution-of-c-40.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog-mstechnology.blogspot.com%2f2009%2f11%2fevolution-of-c-40.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/The_Evolution_of_c</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/The_Evolution_of_c</guid>
      <pubDate>Fri, 27 Nov 2009 10:39:48 GMT</pubDate>
    </item>
    <item>
      <title>Extending ASP.NET MVC 2 Templates - Kazi Manzur Rashid</title>
      <description>One of the new features of ASP.NET MVC 2 is Templates (DisplayFor/EditorFor), Brad Wilson did a series of post which explains how the templates works, Please read it before you continue this post.

Although he did an excellent job explaining the inner-details, but one thing you will notice that the object model in those examples are traversed from top to bottom or parent to child which is good for explaining the internal, but in our real application we need a bit more support. Lets take a trivial example, you are creating a create/edit screen for your Product, where each product has a associated Category and you want to show this category in a DropDownList, say we have a Product class like the.... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f27%2fextending-asp-net-mvc-2-templates.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f27%2fextending-asp-net-mvc-2-templates.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Extending_ASP_NET_MVC_2_Templates_Kazi_Manzur_Rashid</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Extending_ASP_NET_MVC_2_Templates_Kazi_Manzur_Rashid</guid>
      <pubDate>Sat, 28 Nov 2009 12:45:00 GMT</pubDate>
    </item>
    <item>
      <title>Supporting multiple submit buttons on an ASP.NET MVC view</title>
      <description>A while ago, I was asked for advice on how to support multiple submit buttons in an ASP.NET MVC application, preferably without using any JavaScript. The idea was that a form could contain more than one submit button issuing a form post to a different controller action.

The above situation can be solved in many ways, one a bit cleaner than the other. For example, one could post the form back to one action method and determine which method should be called from that action method. Good solution, however: not standardized within a project and just not that maintainable. A better solution in this case was to create an ActionNameSelectorAttribute. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f11%2f26%2fSupporting-multiple-submit-buttons-on-an-ASPNET-MVC-view.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f11%2f26%2fSupporting-multiple-submit-buttons-on-an-ASPNET-MVC-view.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Supporting_multiple_submit_buttons_on_an_ASP_NET_MVC_view</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Supporting_multiple_submit_buttons_on_an_ASP_NET_MVC_view</guid>
      <pubDate>Thu, 26 Nov 2009 17:15:00 GMT</pubDate>
    </item>
    <item>
      <title>ajax with asp.net</title>
      <description>Before starting with Ajax + asp.net Application you need to do follow &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwebdevlopementhelp.blogspot.com%2f2009%2f09%2faspnet-with-ajax.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwebdevlopementhelp.blogspot.com%2f2009%2f09%2faspnet-with-ajax.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/ajax_with_asp_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/ajax_with_asp_net</guid>
      <pubDate>Tue, 17 Nov 2009 09:52:58 GMT</pubDate>
    </item>
    <item>
      <title>Retrieve only the first record from a LEFT JOIN</title>
      <description>Recently I was working on a project where I had to return a simple list of products, and if they had images associated with them, return information about only one along with the product. Times like these, a simple left join or inner join just doesn't cut it if there are more than one image/record per product. When this happens there is almost always a simple solution, so let's take a look. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.diaryofaninja.com%2fblog%2f2009%2f11%2f17%2fretrieve-only-the-first-record-from-a-left-join"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.diaryofaninja.com%2fblog%2f2009%2f11%2f17%2fretrieve-only-the-first-record-from-a-left-join" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Retrieve_only_the_first_record_from_a_LEFT_JOIN</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Retrieve_only_the_first_record_from_a_LEFT_JOIN</guid>
      <pubDate>Tue, 17 Nov 2009 09:42:04 GMT</pubDate>
    </item>
    <item>
      <title>priting using C# </title>
      <description>printing is very easy case in all the task ,but when using ASP.NET, printing of web form is not that easy.
if we're building a UI we usually do so by painting controls on the screen and allowing whoever developed them to worry about the whys and wherefores about how that control should look. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodingstuffsbykiran.blogspot.com%2f2009%2f06%2fprinting-using-c.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodingstuffsbykiran.blogspot.com%2f2009%2f06%2fprinting-using-c.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/priting_using_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/priting_using_C</guid>
      <pubDate>Tue, 17 Nov 2009 08:29:56 GMT</pubDate>
    </item>
    <item>
      <title>Exploring Silverlight behaviors: look Ma, no code!</title>
      <description>Andrej Tozon has created this great Halloween scary sound player with the help of Silverlight behaviors. Check this cool article, it really deserves your attention. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.silverlightshow.net%2fitems%2fExploring-Silverlight-behaviors-look-Ma-no-code.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.silverlightshow.net%2fitems%2fExploring-Silverlight-behaviors-look-Ma-no-code.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Exploring_Silverlight_behaviors_look_Ma_no_code</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Exploring_Silverlight_behaviors_look_Ma_no_code</guid>
      <pubDate>Tue, 17 Nov 2009 08:02:08 GMT</pubDate>
    </item>
    <item>
      <title> Telerik Extensions for ASP.NET MVC Survey - Kazi Manzur Rashid's Blog</title>
      <description>Dear readers, as you know that we have released our beta few weeks back, we are currently looking for your feedback on the existing features as well as the features that you would like to see in our next release. This is a very short survey only 4/5 screens to complete, click here to submit your valuable feedback.
Thanks in advance for your precious... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f17%2ftelerik-extensions-for-asp-net-mvc-survey.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f17%2ftelerik-extensions-for-asp-net-mvc-survey.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Telerik_Extensions_for_ASP_NET_MVC_Survey_Kazi_Manzur_Rashid_s_Blog</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Telerik_Extensions_for_ASP_NET_MVC_Survey_Kazi_Manzur_Rashid_s_Blog</guid>
      <pubDate>Wed, 18 Nov 2009 06:45:02 GMT</pubDate>
    </item>
    <item>
      <title>Handy snippet for Sitecore CMS - Part 5 - Getting items from a Treelis</title>
      <description>Hi there,

In my previous post, you could get the items from a tree list field. In this post, we'll get them in another way:

Sitecore.Data.Items.Item item = Sitecore.Context.Item;

Sitecore.Data.Fields.MultilistField multilistField = item.Fields[&amp;quot;TreeListField&amp;quot;];
Sitecore.Data.Items.Item[] items = multilistField.GetItems();

Hope this is usefull!  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.hockblogs.net%2fpost%2f2009%2f11%2fHandy-snippet-for-Sitecore-CMS---Part-5---Getting-items-from-a-Treelist2c-the-other-way.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.hockblogs.net%2fpost%2f2009%2f11%2fHandy-snippet-for-Sitecore-CMS---Part-5---Getting-items-from-a-Treelist2c-the-other-way.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Handy_snippet_for_Sitecore_CMS_Part_5_Getting_items_from_a_Treelis</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Handy_snippet_for_Sitecore_CMS_Part_5_Getting_items_from_a_Treelis</guid>
      <pubDate>Tue, 17 Nov 2009 06:31:35 GMT</pubDate>
    </item>
    <item>
      <title>Best toolkit for preventing Cross site Scripting</title>
      <description>Best Toolkit to prevent the Cross side Scripting , you can use this tool and come to know how to solve the Problem of Cross Side scripting  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodingstuffsbykiran.blogspot.com%2f2009%2f08%2faspnet-cross-site-scripting-toolkit.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodingstuffsbykiran.blogspot.com%2f2009%2f08%2faspnet-cross-site-scripting-toolkit.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Best_toolkit_for_preventing_Cross_site_Scripting</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Best_toolkit_for_preventing_Cross_site_Scripting</guid>
      <pubDate>Wed, 11 Nov 2009 08:01:18 GMT</pubDate>
    </item>
    <item>
      <title>ASP NET slideshow Control with jQuery and XML</title>
      <description>For the past few years, the image sliders, slide-shows, and Ad Rotator scripts have become increasingly popular for web pages. There are thousands of these scripts on the Web but is difficult to find one that fit my requirements. I want a script that is flexible enough for me to use it as an Ad Rotator, slide-shows or image rotator with navigation controls and extract the slides information from XML file. After spending some time researching for it, I found the jQuery based slideshow with navigation controls from Dynamic Drive and the article reading-xml-with-jquery. I had put together these finding and a brief tutorial &amp;quot;jQuery slideshow with XML&amp;quot;. Recently, I decided to encapsulate this into ASP.NET User Controls to increase reusability of code. Now, I can have multiple instances of this control on my page and I can customize the width and height, options to hide or show navigation controls, XML file source, and others setting for each instance. I have put together a step by step tutorial on how I have accomplished this.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.ysatech.com%2fpost%2f2009%2f11%2f10%2fASP-NET-slideshow-Control-with-jQuery-and-XML.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.ysatech.com%2fpost%2f2009%2f11%2f10%2fASP-NET-slideshow-Control-with-jQuery-and-XML.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_slideshow_Control_with_jQuery_and_XML</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_slideshow_Control_with_jQuery_and_XML</guid>
      <pubDate>Wed, 11 Nov 2009 06:34:56 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC View and Transaction - Kazi Manzur Rashid's</title>
      <description>Scott showed how to render the Grid in a Transaction. Certainly it does the job but in my opinion view component should not be responsible for this kind of cross cutting concerns, instead we can use the Action Filters. Lets see how we can utilize the Action Filter in this scenario instead of modifying the Grid code. What Scott is trying to do is encapsulate the data access operation in a transaction, the Action Filter has several methods which the ASP.NET MVC framework executes in different stages of a request. In this case, we will use the OnActionExecuting which fires before the code enters into the controller method to start a transaction and OnResultExecuted which fires when the view is processed, we will commit/rollback based upon the status, here is the code that would process the action result in a transaction: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f11%2fasp-net-mvc-view-and-transaction.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f11%2fasp-net-mvc-view-and-transaction.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_View_and_Transaction_Kazi_Manzur_Rashid_s</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_View_and_Transaction_Kazi_Manzur_Rashid_s</guid>
      <pubDate>Wed, 11 Nov 2009 18:00:00 GMT</pubDate>
    </item>
    <item>
      <title>PIVOT Operator in SQL</title>
      <description>Explained about PIVOT Operator in SQL &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog-mstechnology.blogspot.com%2f2009%2f06%2fpivot-operator-in-sql.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog-mstechnology.blogspot.com%2f2009%2f06%2fpivot-operator-in-sql.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/PIVOT_Operator_in_SQL</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/PIVOT_Operator_in_SQL</guid>
      <pubDate>Mon, 09 Nov 2009 10:16:55 GMT</pubDate>
    </item>
    <item>
      <title>What's XML..?</title>
      <description>How to get overview  of XML..?  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog-dotnethelp.blogspot.com%2f2009%2f10%2fwhats-xml.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog-dotnethelp.blogspot.com%2f2009%2f10%2fwhats-xml.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/xml/What_s_XML</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/xml/What_s_XML</guid>
      <pubDate>Mon, 09 Nov 2009 09:09:13 GMT</pubDate>
    </item>
    <item>
      <title>Web Asset Enhancements in Telerik Extensions for ASP.NET MVC - Kazi</title>
      <description>In the recent release, there has been few enhancements in the Web Asset Management. One of the new thing that we introduced which was actually requested by the community is Shared Web Asset. In this post, I will show you, how to use it in your ASP.NET MVC... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f09%2fweb-asset-enhancements-in-telerik-extensions-for-asp-net-mvc.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2frashid%2farchive%2f2009%2f11%2f09%2fweb-asset-enhancements-in-telerik-extensions-for-asp-net-mvc.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Web_Asset_Enhancements_in_Telerik_Extensions_for_ASP_NET_MVC_Kazi</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Web_Asset_Enhancements_in_Telerik_Extensions_for_ASP_NET_MVC_Kazi</guid>
      <pubDate>Mon, 09 Nov 2009 15:00:01 GMT</pubDate>
    </item>
    <item>
      <title>WPF TreeView Binding with Dataset </title>
      <description>TreeView is a fantastic control right from classic VB days. It is the best control to display hierarchically organized data. TreeView population by adding nodes through looping has gone. Now in the ASP.Net improved support by using XML to transform the Dataset to TreeView binding.

HierarchicalDataTemplate in mapping data
To recognize the node levels by TreeView we need HierarchicalDataTemplate. It will work if the dataset is Relational Database. And give a unique name that describes the relationships. Add a TextBlock for displaying the header table data. In this article we point categories as the Header Data. 
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvbguide.blogspot.com%2f2009%2f11%2fwpf-treeview-binding-with-dataset.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvbguide.blogspot.com%2f2009%2f11%2fwpf-treeview-binding-with-dataset.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/WPF_TreeView_Binding_with_Dataset</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/WPF_TreeView_Binding_with_Dataset</guid>
      <pubDate>Mon, 09 Nov 2009 06:12:53 GMT</pubDate>
    </item>
  </channel>
</rss>
