<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - published aspnet stories</title>
    <description>the latest published aspnet stories from DotNetKicks.com</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>Free Continuous Integration Toolkit</title>
      <description>continuous integration (CI) implements continuous processes of applying quality control - small pieces of effort, applied frequently. Continuous integration aims to improve the quality of software, and to reduce the time taken to deliver it, by replacing the traditional practice of applying quality control after completing all development.

My personal definition is:
"Giving a damn that the code you write is not breaking the app considering that other developers are working on the code base at the same time and realizing that you are not infallible." &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweb2asp.net%2f2010%2f10%2ffree-continuous-integration-toolkit.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweb2asp.net%2f2010%2f10%2ffree-continuous-integration-toolkit.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Free_Continuous_Integration_Toolkit</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Free_Continuous_Integration_Toolkit</guid>
      <pubDate>Mon, 18 Oct 2010 08:15:52 GMT</pubDate>
    </item>
    <item>
      <title>DotTrace 4.0  Performance Profiler Released</title>
      <description>I have been using DotTrace for a while now and have always found it invaluable when digging into an application to find performance bottlenecks and memory leaks. Before DotTrace it was a real pain trying to lock down these problems (often so obscure that the Hubble space telescope could find it difficult to see!).

What DotTrace does is to take a snapshot of an application, while it is running, from a performance/memory usage perspective and then provide you with several ways of digging into your code and highlighting potential hotspots or problematic areas. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweb2asp.net%2f2010%2f10%2fdottrace-40-performance-profiler.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweb2asp.net%2f2010%2f10%2fdottrace-40-performance-profiler.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/DotTrace_4_0_Performance_Profiler_Released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/DotTrace_4_0_Performance_Profiler_Released</guid>
      <pubDate>Mon, 04 Oct 2010 15:45:52 GMT</pubDate>
    </item>
    <item>
      <title>How to use Google Data API in ASP.NET MVC. Part 2 - YouTube</title>
      <description>In this second part of my GData series I tried to explain how to use YouTube API for .NET to store/retrieve videos on/from YouTube. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmahdi.mp%2fhow-to-use-google-data-api-in-asp-net-mvc-part-2-youtube%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmahdi.mp%2fhow-to-use-google-data-api-in-asp-net-mvc-part-2-youtube%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/How_to_use_Google_Data_API_in_ASP_NET_MVC_Part_2_YouTube</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/How_to_use_Google_Data_API_in_ASP_NET_MVC_Part_2_YouTube</guid>
      <pubDate>Tue, 25 May 2010 18:45:52 GMT</pubDate>
    </item>
    <item>
      <title>Ordering fields in ASP.NET MVC 2 templated helpers</title>
      <description>Ever worked with the templated helpers provided by ASP.NET MVC 2? Templated helpers provide a way to automatically build UI based on a data model that is marked with attributes defined in the System.ComponentModel.DataAnnotations namespace. For example, a property in the model can be decorated with the attribute [DisplayFormat(DataFormatString = &amp;quot;{0:c}&amp;quot;)], and the templated helpers will always render this field formatted as currency.

If you have worked with templated helpers, you must agree: they can be useful! There's one thing which is impossible in the current version: ordering fields. And that's what this post will accomplish. &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%2f2010%2f01%2f06%2fOrdering-fields-in-ASPNET-MVC-2-templated-helpers.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2010%2f01%2f06%2fOrdering-fields-in-ASPNET-MVC-2-templated-helpers.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Ordering_fields_in_ASP_NET_MVC_2_templated_helpers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Ordering_fields_in_ASP_NET_MVC_2_templated_helpers</guid>
      <pubDate>Tue, 12 Jan 2010 02:15: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>Leveraging ASP.NET MVC 2 futures ViewState</title>
      <description>In my previous blog post, I called something "ViewState in MVC" while it is not really ViewState. To be honest, I did this on purpose, wanting to see people discuss this possibly new feature in MVC 2. Discussion started quite fast: most people do not like the word ViewState, especially when it is linked to ASP.NET MVC. As Phil Haack pointed out in a comment on my previous blog post, I used this foul word where it was not appropriate: &amp;quot;(.) I think calling it ViewState is very misleading. (.) what your serializing is the state of the Model, not the View. (.)&amp;quot;

Let's use this in a practical example.
 &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%2f10%2f08%2fLeveraging-ASPNET-MVC-2-futures-ViewState.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f10%2f08%2fLeveraging-ASPNET-MVC-2-futures-ViewState.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Leveraging_ASP_NET_MVC_2_futures_ViewState</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Leveraging_ASP_NET_MVC_2_futures_ViewState</guid>
      <pubDate>Thu, 08 Oct 2009 07:30:10 GMT</pubDate>
    </item>
    <item>
      <title>Creating Excel spreadsheets .XLS and .XLSX in C# - ASP.NET MVC Project</title>
      <description>Recently I had to implement some code to create an Excel spreadsheet/report using C#.
The task was: given an Excel spreadsheet template - a .XLS file (with formulas, pivot tables, macros, etc) I had to fill some data in one of the sheets of the spreadsheet and send this modified spreadsheet back to the user requesting such an operation (Excel report).
I had a great time while studying the possible ways of doing what the task asks for.
In this article I present an ASP.NET MVC project that shows you how to create an .XLS file using NPOI and an .XLSX file using ExcelPackage. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.leniel.net%2f2009%2f07%2fcreating-excel-spreadsheets-xls-xlsx-c.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.leniel.net%2f2009%2f07%2fcreating-excel-spreadsheets-xls-xlsx-c.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Creating_Excel_spreadsheets_XLS_and_XLSX_in_C_ASP_NET_MVC_Project</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Creating_Excel_spreadsheets_XLS_and_XLSX_in_C_ASP_NET_MVC_Project</guid>
      <pubDate>Thu, 02 Jul 2009 22:20:00 GMT</pubDate>
    </item>
    <item>
      <title>Creating Excel spreadsheets .XLS and .XLSX in C# - ASP.NET MVC Project</title>
      <description>Recently I had to implement some code to create an Excel spreadsheet/report using C#.
The task was: given an Excel spreadsheet template - a .XLS file (with formulas, pivot tables, macros, etc) I had to fill some data in one of the sheets of the spreadsheet and send this modified spreadsheet back to the user requesting such an operation (Excel report).
I had a great time while studying the possible ways of doing what the task asks for.
In this article I present an ASP.NET MVC project that shows you how to create an .XLS file using NPOI and an .XLSX file using ExcelPackage. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.leniel.net%2f2009%2f07%2fcreating-excel-spreadsheets-xls-xlsx-c.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.leniel.net%2f2009%2f07%2fcreating-excel-spreadsheets-xls-xlsx-c.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Creating_Excel_spreadsheets_XLS_and_XLSX_in_C_ASP_NET_MVC_Project</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Creating_Excel_spreadsheets_XLS_and_XLSX_in_C_ASP_NET_MVC_Project</guid>
      <pubDate>Thu, 02 Jul 2009 22:20:00 GMT</pubDate>
    </item>
    <item>
      <title>More ASP.NET MVC Best Practices</title>
      <description>In this post, I'll share some of the best practices and guidelines which I have come across while developing ASP.NET MVC web applications. I will not cover all best practices that are available, instead add some specific things that have not been mentioned in any blog post out there.

Existing best practices can be found on Kazi Manzur Rashid's blog and Simone Chiaretta's blog. &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%2f05%2f06%2fMore-ASPNET-MVC-Best-Practices.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f05%2f06%2fMore-ASPNET-MVC-Best-Practices.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/More_ASP_NET_MVC_Best_Practices</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/More_ASP_NET_MVC_Best_Practices</guid>
      <pubDate>Wed, 06 May 2009 19:16:02 GMT</pubDate>
    </item>
    <item>
      <title>ELMAH: Error Logging Modules and Handlers for ASP.NET (and MVC too!)</title>
      <description>ELMAH has been one of the most useful tools for ASP.NET developers to log errors on their web applications. Now Scott has a nice talk on how to use it even in your ASP.NET MVC applications. Cool! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fELMAHErrorLoggingModulesAndHandlersForASPNETAndMVCToo.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fELMAHErrorLoggingModulesAndHandlersForASPNETAndMVCToo.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/security/ELMAH_Error_Logging_Modules_and_Handlers_for_ASP_NET_and_MVC_too</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/security/ELMAH_Error_Logging_Modules_and_Handlers_for_ASP_NET_and_MVC_too</guid>
      <pubDate>Fri, 24 Apr 2009 20:01:11 GMT</pubDate>
    </item>
    <item>
      <title>MSDN session on ASP.NET MVC</title>
      <description>As promised to all people attending my online session on ASP.NET MVC this afternoon, here is the slide deck I've used. I must say, doing a presentation using Live Meeting and a Microsoft Roundtable device seemed a bit strange at first. However, the setup that is used to do this kind of sessions is really cool to work with! Make sure to check Katrien's blog for all other Live Meeting MSDN sessions that are planned.
 &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%2f04%2f23%2fMSDN-session-on-ASPNET-MVC.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f04%2f23%2fMSDN-session-on-ASPNET-MVC.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/MSDN_session_on_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/MSDN_session_on_ASP_NET_MVC</guid>
      <pubDate>Thu, 23 Apr 2009 21:44:15 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC and the Managed Extensibility Framework (MEF)</title>
      <description>Microsoft's Managed Extensibility Framework (MEF) is a .NET library (released on CodePlex) that enables greater re-use of application components. You can do this by dynamically composing your application based on a set of classes and methods that can be combined at runtime. Think of it like building an appliation that can host plugins, which in turn can also be composed of different plugins. Since examples say a thousand times more than text, let's go ahead with a sample leveraging MEF in an ASP.NET MVC web application. &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%2f04%2f21%2fASPNET-MVC-and-the-Managed-Extensibility-Framework-(MEF).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f04%2f21%2fASPNET-MVC-and-the-Managed-Extensibility-Framework-(MEF).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/ASP_NET_MVC_and_the_Managed_Extensibility_Framework_MEF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/ASP_NET_MVC_and_the_Managed_Extensibility_Framework_MEF</guid>
      <pubDate>Tue, 21 Apr 2009 20:46:14 GMT</pubDate>
    </item>
    <item>
      <title>Using the ASP.NET MVC Futures AsyncController</title>
      <description>Last week, I blogged about all stuff that is included in the ASP.NET MVC Futures assembly, which is an assembly available on CodePlex and contains possible future features (tonguetwister!) for the ASP.NET MVC framework. One of the comments asked for more information on the AsyncController that is introduced in the MVC Futures. So here goes!  &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%2f04%2f08%2fUsing-the-ASPNET-MVC-Futures-AsyncController.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f04%2f08%2fUsing-the-ASPNET-MVC-Futures-AsyncController.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Using_the_ASP_NET_MVC_Futures_AsyncController</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Using_the_ASP_NET_MVC_Futures_AsyncController</guid>
      <pubDate>Wed, 08 Apr 2009 15:31:04 GMT</pubDate>
    </item>
    <item>
      <title>Sample chapter from ASP.NET MVC 1.0 Quickly</title>
      <description>When downloading and installing the ASP.NET MVC framework SDK, a new project template is installed in Visual Studio. This chapter describes how to use the ASP.NET MVC project template that is installed in Visual Studio. All ASP.NET MVC aspects are touched briefly by creating a new ASP.NET MVC web application based on this Visual Studio template. Besides view, controller, and model, new concepts including ViewData-a means of transferring data between controller and view, routing-the link between a web browser URL and a specific action method inside a controller, and unit testing of a controller are also illustrated here. 

 &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%2f03%2f19%2fSample-chapter-from-ASPNET-MVC-10-Quickly.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f03%2f19%2fSample-chapter-from-ASPNET-MVC-10-Quickly.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Sample_chapter_from_ASP_NET_MVC_1_0_Quickly</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Sample_chapter_from_ASP_NET_MVC_1_0_Quickly</guid>
      <pubDate>Thu, 19 Mar 2009 15:12:04 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC 1.0 has been released!</title>
      <description>To keep up with a good tradition (see here and here), I'm being one of the earliest bloggers having great news on ASP.NET MVC: we are at version 1.0! This means production ready, supported, stable, .! Grab the download at Microsoft.com.  &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%2f03%2f18%2fASPNET-MVC-10-has-been-released!.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2009%2f03%2f18%2fASPNET-MVC-10-has-been-released!.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/ASP_NET_MVC_1_0_has_been_released</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/ASP_NET_MVC_1_0_has_been_released</guid>
      <pubDate>Wed, 18 Mar 2009 18:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Using StringTemplate as a ViewEngine for ASP.Net MVC</title>
      <description>Describes how to use StringTemplate as an alternative View Engine for the Asp.Net MVC framework. Links to the source code (on Google Code) for the ViewEngine implementation, and gives a basic walkthrough of how to implement StringTemplates as views. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwebsitelogic.net%2farticles%2fMVC%2fstringtemplate-viewengine-asp-net-mvc%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwebsitelogic.net%2farticles%2fMVC%2fstringtemplate-viewengine-asp-net-mvc%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Using_StringTemplate_as_a_ViewEngine_for_ASP_Net_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Using_StringTemplate_as_a_ViewEngine_for_ASP_Net_MVC</guid>
      <pubDate>Fri, 13 Feb 2009 16:09:22 GMT</pubDate>
    </item>
    <item>
      <title>Forms interaction with ASP.NET MVC (screencast)</title>
      <description>This screencast is a short demonstration on how you can handle form interactions using the ASP.NET MVC framework. &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%2f2008%2f09%2f17%2fForms-interaction-with-ASPNET-MVC-(screencast).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f09%2f17%2fForms-interaction-with-ASPNET-MVC-(screencast).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Forms_interaction_with_ASP_NET_MVC_screencast</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Forms_interaction_with_ASP_NET_MVC_screencast</guid>
      <pubDate>Wed, 17 Sep 2008 12:25:22 GMT</pubDate>
    </item>
    <item>
      <title>Forms interaction with ASP.NET MVC (screencast)</title>
      <description>This screencast is a short demonstration on how you can handle form interactions using the ASP.NET MVC framework. &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%2f2008%2f09%2f17%2fForms-interaction-with-ASPNET-MVC-(screencast).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f09%2f17%2fForms-interaction-with-ASPNET-MVC-(screencast).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Forms_interaction_with_ASP_NET_MVC_screencast</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Forms_interaction_with_ASP_NET_MVC_screencast</guid>
      <pubDate>Wed, 17 Sep 2008 12:25:22 GMT</pubDate>
    </item>
    <item>
      <title>jQuery Form Serialization without ASP.NET ViewState</title>
      <description>When building AJAX applications that send client form content to the server, ViewState and EventValidation fields can get in the way. Using jQuery you can make short work skipping over these fields and send only the raw POST data to the server. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.west-wind.com%2fweblog%2fposts%2f472329.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.west-wind.com%2fweblog%2fposts%2f472329.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/jQuery_Form_Serialization_without_ASP_NET_ViewState</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/jQuery_Form_Serialization_without_ASP_NET_ViewState</guid>
      <pubDate>Fri, 05 Sep 2008 03:31:10 GMT</pubDate>
    </item>
    <item>
      <title>Code based ASP.NET MVC GridView</title>
      <description>Maarten Balliauw shows you how to build an ASP.NET MVC html helper extension method which generates a nice gridview-like control using pure code and MVC framework. &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%2f2008%2f06%2fCode-based-ASPNET-MVC-GridView.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f06%2fCode-based-ASPNET-MVC-GridView.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Code_based_ASP_NET_MVC_GridView</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Code_based_ASP_NET_MVC_GridView</guid>
      <pubDate>Wed, 04 Jun 2008 18:31:05 GMT</pubDate>
    </item>
    <item>
      <title>System.Web.MVC, Rhino Commons, Castle Active Record, Nhibernate, Part </title>
      <description>Rhino.Commons, AR &amp;amp; NHibernate was the right decision for my project, but I've made a conscious effort to shield the MVC web site application from having any knowledge of their existence. This was done to achieve greater separation of layers and fewer direct dependecies. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmichaelhanney.com%2fblog%2f2008%2f05%2f27%2fsystemwebmvc-rhino-commons-caslte-active-record-nhibernate-part-2%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmichaelhanney.com%2fblog%2f2008%2f05%2f27%2fsystemwebmvc-rhino-commons-caslte-active-record-nhibernate-part-2%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/System_Web_MVC_Rhino_Commons_Castle_Active_Record_Nhibernate_Part</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/System_Web_MVC_Rhino_Commons_Castle_Active_Record_Nhibernate_Part</guid>
      <pubDate>Fri, 30 May 2008 08:29:45 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC custom ActionResult (ImageResult)</title>
      <description>The ASP.NET MVC framework introduces the concept of returning an ActionResult in Controllers since the &amp;quot;preview preview&amp;quot; release on CodePlex. The purpose of this concept is to return a generic ActionResult object for each Controller method, allowing different child classes returning different results. In this blog post, I will build a custom ActionResult class which will render an image to the HTTP response stream. &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%2f2008%2f05%2fASPNET-MVC-custom-ActionResult.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f05%2fASPNET-MVC-custom-ActionResult.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_custom_ActionResult_ImageResult</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_custom_ActionResult_ImageResult</guid>
      <pubDate>Tue, 13 May 2008 19:33:03 GMT</pubDate>
    </item>
    <item>
      <title>ASP.Net MVC Membership Starter Kit</title>
      <description>Troy Goode posted abou this yesterday. Today, there's already an update available containing some cool new stuff! &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%2f2008%2f04%2fASPNet-MVC-Membership-Starter-Kit.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f04%2fASPNet-MVC-Membership-Starter-Kit.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_Net_MVC_Membership_Starter_Kit</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_Net_MVC_Membership_Starter_Kit</guid>
      <pubDate>Fri, 04 Apr 2008 19:19:04 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC Framework out on CodePlex</title>
      <description>This morning, I was browsing the new projects page on CodePlex and noticed something nice! The ASP.NET MVC team already rumoured around making the ASP.NET MVC framework source code available on CodePlex, but here it is: the ASP.NET MVC project on CodePlex. &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%2f2008%2f03%2fASPNET-MVC-Framework-out-on-CodePlex.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f03%2fASPNET-MVC-Framework-out-on-CodePlex.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Framework_out_on_CodePlex</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_MVC_Framework_out_on_CodePlex</guid>
      <pubDate>Fri, 21 Mar 2008 17:46:02 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET MVC - Testing issues Q and A</title>
      <description>Some commonly asked questions when developing ASP.NET MVC and unit tests. &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%2f2008%2f03%2fASPNET-MVC---Testing-issues-Q-and-A.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.maartenballiauw.be%2fpost%2f2008%2f03%2fASPNET-MVC---Testing-issues-Q-and-A.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/ASP_NET_MVC_Testing_issues_Q_and_A</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/ASP_NET_MVC_Testing_issues_Q_and_A</guid>
      <pubDate>Wed, 19 Mar 2008 19:51:33 GMT</pubDate>
    </item>
  </channel>
</rss>
