<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - published ajax stories</title>
    <description>the latest published ajax 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>How to pass Dictionary as a parameter to an ActionResult</title>
      <description>I'm using jQuery to make an Ajax call using an Http Post in ASP.NET MVC. I would like to be able to pass a Dictionary of values. I finally figured out the best solution is to pass JSON via the Http Post and use a custom ModelBinder to convert the JSON to a Dictionary. One thing I did in my solution is created a JsonDictionary object that inherits from Dictionary so that I can attach the custom ModelBinder to the JsonDictionary type, and it wont cause any conflicts in the future if I use Dictionary as a ActionResult parameter later on for a different purpose than JSON. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstackoverflow.com%2fquestions%2f1077481%2fhow-do-i-pass-a-dictionary-as-a-parameter-to-an-actionresult-method-from-jquery-a%2f1080721"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstackoverflow.com%2fquestions%2f1077481%2fhow-do-i-pass-a-dictionary-as-a-parameter-to-an-actionresult-method-from-jquery-a%2f1080721" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/How_to_pass_Dictionary_as_a_parameter_to_an_ActionResult</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/How_to_pass_Dictionary_as_a_parameter_to_an_ActionResult</guid>
      <pubDate>Fri, 03 Jul 2009 22:48:07 GMT</pubDate>
    </item>
    <item>
      <title>UpdatePanel and Sys.Application.add_load Woes</title>
      <description>The ScriptManager usually puts calls to Sys.Application.initialize at the end of a page, right before the ending form tag.  For custom composite controls, however, this call can come before the script has been output for your custom control.  If you try to use the ScriptManager to initialize your control, it won't initialize in Firefox 3, Opera 9, or Safari 3.  Here's how you can work around it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2fdavidcilley%2farchive%2f2009%2f06%2f25%2fupdatepanel-and-sys-application-add-load-woes.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.atalasoft.com%2fcs%2fblogs%2fdavidcilley%2farchive%2f2009%2f06%2f25%2fupdatepanel-and-sys-application-add-load-woes.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/UpdatePanel_and_Sys_Application_add_load_Woes</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/UpdatePanel_and_Sys_Application_add_load_Woes</guid>
      <pubDate>Mon, 29 Jun 2009 20:50:46 GMT</pubDate>
    </item>
    <item>
      <title>Never worry about ASP.NET AJAX's &amp;quot;d&amp;quot; again</title>
      <description>Since a lot of people are having trouble with it, I want to share one method you can use to completely isolate your code from the &amp;quot;.d&amp;quot; problem. In this post, I will show you how to detect the ".d" and how you can completely isolate your $.ajax success handler from it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fencosia.com%2f2009%2f06%2f29%2fnever-worry-about-asp-net-ajaxs-d-again%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fencosia.com%2f2009%2f06%2f29%2fnever-worry-about-asp-net-ajaxs-d-again%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Never_worry_about_ASP_NET_AJAX_s_d_again</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Never_worry_about_ASP_NET_AJAX_s_d_again</guid>
      <pubDate>Mon, 29 Jun 2009 17:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Sending DateTime Parameters from AJAX to WCF Operations (methods)</title>
      <description>Dealing with DateTime formats and Time Zones between AJAX and WCF &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdevelopmentalmadness.blogspot.com%2f2008%2f11%2fsending-datetime-parameters-from-ajax.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdevelopmentalmadness.blogspot.com%2f2008%2f11%2fsending-datetime-parameters-from-ajax.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Sending_DateTime_Parameters_from_AJAX_to_WCF_Operations_methods</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Sending_DateTime_Parameters_from_AJAX_to_WCF_Operations_methods</guid>
      <pubDate>Fri, 26 Jun 2009 16:02:41 GMT</pubDate>
    </item>
    <item>
      <title>Hey jQuery lovers, ASP.NET AJAX can do Ajax too!</title>
      <description>Learn how to make Ajax requests easy with the ASP.NET AJAX client-side library. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.myviewstate.net%2fblog%2fpost%2f2009%2f06%2f26%2fHey-jQuery-lovers-ASPNET-AJAX-can-do-Ajax-too!.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.myviewstate.net%2fblog%2fpost%2f2009%2f06%2f26%2fHey-jQuery-lovers-ASPNET-AJAX-can-do-Ajax-too!.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Hey_jQuery_lovers_ASP_NET_AJAX_can_do_Ajax_too</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Hey_jQuery_lovers_ASP_NET_AJAX_can_do_Ajax_too</guid>
      <pubDate>Fri, 26 Jun 2009 04:32:19 GMT</pubDate>
    </item>
    <item>
      <title>JSON Hijacking</title>
      <description>Phil talks about the dangers of JSON hijacking &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhaacked.com%2farchive%2f2009%2f06%2f25%2fjson-hijacking.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhaacked.com%2farchive%2f2009%2f06%2f25%2fjson-hijacking.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/JSON_Hijacking</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/JSON_Hijacking</guid>
      <pubDate>Thu, 25 Jun 2009 20:28:30 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET Ajax - Script Combining and moving ScriptResource.axd's to Sta</title>
      <description>I've got a little something I'm doing and I wanted to take control over some scripts that were being added by ASP.NET WebForms. Remember that ASP.NET WebForms is designed around a control/component model, so you don't get 100% control over your markup. When you drag a control onto the page in WebForms, you expect it to work. &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%2fASPNETAjaxScriptCombiningAndMovingScriptResourceaxdsToStaticScripts.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.hanselman.com%2fblog%2fASPNETAjaxScriptCombiningAndMovingScriptResourceaxdsToStaticScripts.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/ASP_NET_Ajax_Script_Combining_and_moving_ScriptResource_axd_s_to_Sta</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/ASP_NET_Ajax_Script_Combining_and_moving_ScriptResource_axd_s_to_Sta</guid>
      <pubDate>Wed, 24 Jun 2009 14:25:30 GMT</pubDate>
    </item>
    <item>
      <title>Drag and Drop Categorized Item List with jQuery and ASP.NET MVC</title>
      <description>How to drag items between categories (sections) and sections between columns using jQuery and ASP.NET MVC. Part 1 focuses on layout and using jQuery UI's sortable functionality. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.philderksen.com%2f2009%2f06%2f18%2fdrag-and-drop-categorized-item-list-with-jquery-and-aspnet-mvc-part-1%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.philderksen.com%2f2009%2f06%2f18%2fdrag-and-drop-categorized-item-list-with-jquery-and-aspnet-mvc-part-1%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/Drag_and_Drop_Categorized_Item_List_with_jQuery_and_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/Drag_and_Drop_Categorized_Item_List_with_jQuery_and_ASP_NET_MVC</guid>
      <pubDate>Mon, 22 Jun 2009 18:20:43 GMT</pubDate>
    </item>
    <item>
      <title> Ajax survey 2009: jQuery and MS Ajax are almost tied</title>
      <description>Simone posts the results of the survey about ajax adoption among .NET developers. jQuery gained 58% since 2007 and now is almost tied to the MS Ajax stack (Control toolkit and ajax core) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodeclimber.net.nz%2farchive%2f2009%2f06%2f22%2fajax-survey-2009-jquery-and-ms-ajax-are-almost-tied.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodeclimber.net.nz%2farchive%2f2009%2f06%2f22%2fajax-survey-2009-jquery-and-ms-ajax-are-almost-tied.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Ajax_survey_2009_jQuery_and_MS_Ajax_are_almost_tied</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Ajax_survey_2009_jQuery_and_MS_Ajax_are_almost_tied</guid>
      <pubDate>Mon, 22 Jun 2009 16:45:00 GMT</pubDate>
    </item>
    <item>
      <title>How to programmatically set a value of a watermarked TextBox via JS</title>
      <description>One more article from the &amp;quot;AJAX Control Toolkit tips and tricks&amp;quot; series. Explains how to access (set or get) programmatically (via JavaScript) a value of an ASP.NET TextBox control that has a TextBoxWatemark extender from the AJAX Control Toolkit attached to it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.turlov.com%2f2009%2f06%2fhow-to-programmatically-set-value-of.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.turlov.com%2f2009%2f06%2fhow-to-programmatically-set-value-of.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/How_to_programmatically_set_a_value_of_a_watermarked_TextBox_via_JS</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/How_to_programmatically_set_a_value_of_a_watermarked_TextBox_via_JS</guid>
      <pubDate>Mon, 22 Jun 2009 14:36:52 GMT</pubDate>
    </item>
    <item>
      <title>Developing Web 2.0 Portal using Asp.Net MVC, Microsoft Ajax Client Tem</title>
      <description>...Check out the working portal at http://www.linksgrid.com...
Where do we start? Well, I prefer to start with database. Portal database-design itself is very simple. We need to have containers for Widgets (basic building blocks of the portal), Tabs (logical grouping of Widgets) and Users (so that we can assign Widgets to users through tabs). Below is a simple relational diagram between these entities.

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flakkakula.wordpress.com%2f2009%2f06%2f18%2fdeveloping-web-2-0-portal-using-asp-net-mvc-microsoft-ajax-client-templates-and-jquery-with-drag-and-drop-widget-personalization-part-1%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flakkakula.wordpress.com%2f2009%2f06%2f18%2fdeveloping-web-2-0-portal-using-asp-net-mvc-microsoft-ajax-client-templates-and-jquery-with-drag-and-drop-widget-personalization-part-1%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Developing_Web_2_0_Portal_using_Asp_Net_MVC_Microsoft_Ajax_Client_Tem</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Developing_Web_2_0_Portal_using_Asp_Net_MVC_Microsoft_Ajax_Client_Tem</guid>
      <pubDate>Sun, 21 Jun 2009 22:40:38 GMT</pubDate>
    </item>
    <item>
      <title>Web 2.0 Portal using Asp.Net MVC, Microsoft Ajax Client Templates and </title>
      <description>A few years back when I saw web 2.0 Ajax start pages like netvibes I was fascinated by the Ajax capabilities and coolness in dynamic web portals. As an enthusiastic Asp.Net developer I always wanted to develop my own Ajax Portal. While searching on web I came across several implementations and samples. Two of those samples are worth mentioning here. First one is from HTML Goodies and other is from Omar Al Zabir. First one is mostly developed using plain old javascript, thus making it fairly complex to code and maintain. Though it lacks database implementation it can be added easily and server side php code can be replaced by Asp.Net webservices or page-methods. Later one is developed using cutting edge Asp.Net technologies, Omar did an excellent job implementing an Ajax web 2.0 portal using Asp.Net, you can read about it on Omar's blog. As this implementation uses Asp.Net update panels it can not be treated as pure Ajax solution... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flakkakula.wordpress.com%2f2009%2f06%2f15%2fweb-2-0-portal-using-asp-net-mvc-microsoft-ajax-client-templates-and-jquery-with-drag-and-drop-widget-personalization%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flakkakula.wordpress.com%2f2009%2f06%2f15%2fweb-2-0-portal-using-asp-net-mvc-microsoft-ajax-client-templates-and-jquery-with-drag-and-drop-widget-personalization%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Web_2_0_Portal_using_Asp_Net_MVC_Microsoft_Ajax_Client_Templates_and</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Web_2_0_Portal_using_Asp_Net_MVC_Microsoft_Ajax_Client_Templates_and</guid>
      <pubDate>Sun, 21 Jun 2009 22:37:06 GMT</pubDate>
    </item>
    <item>
      <title>Rebuilding The Google Blog Bar; jQuery-ed Version</title>
      <description> A  4KB jQuery plugin instead of  118KB Google Blog Bar!!

I have shown before how to use Google Blog Bar as related posts widget, But when I actually tried to use it on my site, I didn't like all these JavaScript/CSS files that I've to include.
And since I already use jQuery -and who doesn't- I decided to rebuild the Blog Bar from scratch. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.moretechtips.net%2f2009%2f06%2frebuilding-google-blog-bar-jquery-ed.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.moretechtips.net%2f2009%2f06%2frebuilding-google-blog-bar-jquery-ed.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Rebuilding_The_Google_Blog_Bar_jQuery_ed_Version</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Rebuilding_The_Google_Blog_Bar_jQuery_ed_Version</guid>
      <pubDate>Fri, 19 Jun 2009 04:43:23 GMT</pubDate>
    </item>
    <item>
      <title>11 keystrokes that made my jQuery selector run 10x faster</title>
      <description>An in-depth analysis of the performance concerns when using a popular jQuery selector and a couple ways to dramatically speed it up, including benchmarks. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fencosia.com%2f2009%2f06%2f09%2f11-keystrokes-that-made-my-jquery-selector-run-10x-faster%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fencosia.com%2f2009%2f06%2f09%2f11-keystrokes-that-made-my-jquery-selector-run-10x-faster%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/11_keystrokes_that_made_my_jQuery_selector_run_10x_faster</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/11_keystrokes_that_made_my_jQuery_selector_run_10x_faster</guid>
      <pubDate>Tue, 09 Jun 2009 21:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Passing JSON objects in .NET 3.5</title>
      <description>This article shows how simple it is to pass JSON objects from client to server and vice versa in .NET 3.5 and jQuery. Working demo is provided for better understanding of code. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.novogeek.com%2fpost%2f2009%2f06%2f07%2fPassing-JSON-objects-in-NET-35.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.novogeek.com%2fpost%2f2009%2f06%2f07%2fPassing-JSON-objects-in-NET-35.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Passing_JSON_objects_in_NET_3_5</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Passing_JSON_objects_in_NET_3_5</guid>
      <pubDate>Sun, 07 Jun 2009 20:55:25 GMT</pubDate>
    </item>
    <item>
      <title>AJAX Tab Container - Style Problem</title>
      <description>Cause Since the release of ASP.Net 2.0, all the pages' DTD are set to XHTML 1.0 Transitional by default. Consequently, AJAX Control Toolkits were also created to adhere with standard. All the rendered AJAX controls will follow the said document type definition. As it turns out, our page &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftechnoblogy.net%2fpost%2fAJAX-Tab-Container-Style-Problem.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftechnoblogy.net%2fpost%2fAJAX-Tab-Container-Style-Problem.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/AJAX_Tab_Container_Style_Problem</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/AJAX_Tab_Container_Style_Problem</guid>
      <pubDate>Sat, 06 Jun 2009 07:35:02 GMT</pubDate>
    </item>
    <item>
      <title>Rebranding Microsoft Virtual Earth To &amp;quot;Bing Maps for Enterprise&amp;quot;</title>
      <description>Microsoft Virtual Earth now has a new name (and it's not Kumo or Kiev). First, a little background to ensure we're all on the same page. As of yesterday.. Microsoft Virtual Earth is now called "Bing Maps for Enterprise." &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.bing.com%2fcommunity%2fblogs%2fmaps%2farchive%2f2009%2f05%2f28%2frebranding-microsoft-virtual-earth-to.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.bing.com%2fcommunity%2fblogs%2fmaps%2farchive%2f2009%2f05%2f28%2frebranding-microsoft-virtual-earth-to.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Rebranding_Microsoft_Virtual_Earth_To_Bing_Maps_for_Enterprise</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Rebranding_Microsoft_Virtual_Earth_To_Bing_Maps_for_Enterprise</guid>
      <pubDate>Tue, 02 Jun 2009 21:33:11 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET AJAX 4.0 and the ScriptManager Control</title>
      <description>Learn to use ASP.NET AJAX 4.0 Preview 4 with the ScriptManager in ASP.NET 3.5.  Also, learn the new features of the ScriptManager control in ASP.NET 4.0 (Beta 1). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.visoftinc.com%2farchive%2f2009%2f06%2f01%2fASP.NET-AJAX-4.0-and-the-ScriptManager-Control.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.visoftinc.com%2farchive%2f2009%2f06%2f01%2fASP.NET-AJAX-4.0-and-the-ScriptManager-Control.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/ASP_NET_AJAX_4_0_and_the_ScriptManager_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/ASP_NET_AJAX_4_0_and_the_ScriptManager_Control</guid>
      <pubDate>Tue, 02 Jun 2009 12:53:50 GMT</pubDate>
    </item>
    <item>
      <title>Great Design Property Slider</title>
      <description>Check out this really cool property slider, would be great to recreate in .net &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.leptosestates.com%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.leptosestates.com%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Great_Design_Property_Slider</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Great_Design_Property_Slider</guid>
      <pubDate>Mon, 01 Jun 2009 09:03:34 GMT</pubDate>
    </item>
    <item>
      <title>Update Panels and JSON Alternatives</title>
      <description>In most asp.net applications users experience post backs as a result of submit action by the client browsers. These post backs can be quite annoying when just a small part of the page needs to be refreshed. Update panels are designed to perform partial post back eliminating the need for doing a complete post back for updating a part of the page.

But are these post backs truly partial? In this article we try to find out if Update panels actually improve performance by doing partial post backs or do they end up degrading it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcsharp-codesamples.com%2f2009%2f06%2fupdate-panels-and-json-alternatives%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcsharp-codesamples.com%2f2009%2f06%2fupdate-panels-and-json-alternatives%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Update_Panels_and_JSON_Alternatives</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Update_Panels_and_JSON_Alternatives</guid>
      <pubDate>Sun, 31 May 2009 19:32:48 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET Ajax Control Toolkit animation example</title>
      <description>The AnimationExtender is a simple extender that allows you to utilize the powerful animation framework with existing pages in an easy, declarative fashion. It plays animations whenever a specific event like OnLoad, OnClick, OnMouseOver, or OnMouseOut is raised by the target control.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.coderun.com%2fide%2f%3fpid%3d109"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.coderun.com%2fide%2f%3fpid%3d109" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/ASP_NET_Ajax_Control_Toolkit_animation_example</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/ASP_NET_Ajax_Control_Toolkit_animation_example</guid>
      <pubDate>Sun, 31 May 2009 00:23:47 GMT</pubDate>
    </item>
    <item>
      <title>A Degradable jQuery AJAX Email Form for ASP.NET MVC</title>
      <description>Pretty much every web site on the Internet features a form for users to provide feedback via email to site owners. Migrating to ASP.NET MVC requires a slightly different approach to that used by Web Forms development, so this article looks at one way to implement a web site contact form using the MVC framework and jQuery that degrades nicely. AJAX functionality is said to be &amp;quot;degradable&amp;quot; if a way is provided for the process to work, even though users don't have Javascript available to them. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mikesdotnetting.com%2fArticle.aspx%3fArticleID%3d106"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mikesdotnetting.com%2fArticle.aspx%3fArticleID%3d106" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/A_Degradable_jQuery_AJAX_Email_Form_for_ASP_NET_MVC</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/A_Degradable_jQuery_AJAX_Email_Form_for_ASP_NET_MVC</guid>
      <pubDate>Mon, 08 Jun 2009 07:45:10 GMT</pubDate>
    </item>
    <item>
      <title>Passing complex types in AJAX calls using jQuery &amp;amp; Jayrock</title>
      <description>The article is about passing complex objects to server using Data Transfer Objects (DTO). It is based on the article &amp;quot;Using complex types to make calling services less. complex&amp;quot; at Encosia.com. It is useful when you do not use ASP.NET AJAX but want to use jQuery and Jayrock for making AJAX calls. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fnovogeek.com%2fpost%2f2009%2f05%2f27%2fPassing-complex-types-to-service-calls-using-jQuery-JayRock.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fnovogeek.com%2fpost%2f2009%2f05%2f27%2fPassing-complex-types-to-service-calls-using-jQuery-JayRock.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Passing_complex_types_in_AJAX_calls_using_jQuery_Jayrock</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Passing_complex_types_in_AJAX_calls_using_jQuery_Jayrock</guid>
      <pubDate>Thu, 28 May 2009 06:33:40 GMT</pubDate>
    </item>
    <item>
      <title>ASP.NET 4.0 AJAX - Preview 4 - Data Binding</title>
      <description>Throughout the course of my introductory posts on ASP.NET AJAX 4.0, we looked at the new DataView control as well as the Sys.Observer class, which brings the Observer pattern to plain JavaScript objects.  The new ASP.NET AJAX release is very exciting offering powerful new features to take AJAX enabled applications to a new level.  In this post, we'll look at another exciting feature of ASP.NET AJAX 4.0 known as &amp;quot;live bindings.&amp;quot;   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.visoftinc.com%2farchive%2f2009%2f05%2f27%2fASP.NET-4.0-AJAX-Preview-4-Data-Binding.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.visoftinc.com%2farchive%2f2009%2f05%2f27%2fASP.NET-4.0-AJAX-Preview-4-Data-Binding.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/ASP_NET_4_0_AJAX_Preview_4_Data_Binding</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/ASP_NET_4_0_AJAX_Preview_4_Data_Binding</guid>
      <pubDate>Wed, 27 May 2009 17:16:13 GMT</pubDate>
    </item>
    <item>
      <title>Display Progress Image in Ajax Autocomplete textbox using javascript</title>
      <description>In this example i m going to describe how to add animated Progress Image inside Ajax Auto complete extender textbox to represent loading of data.

For achieving this functionality i am using two different approaches for different versions of AjaxControlToolkit.dll  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcsharpdotnetfreak.blogspot.com%2f2009%2f05%2fautocomplete-textbox-progress-image-gif.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcsharpdotnetfreak.blogspot.com%2f2009%2f05%2fautocomplete-textbox-progress-image-gif.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/ajax/Display_Progress_Image_in_Ajax_Autocomplete_textbox_using_javascript</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/ajax/Display_Progress_Image_in_Ajax_Autocomplete_textbox_using_javascript</guid>
      <pubDate>Wed, 27 May 2009 07:06:05 GMT</pubDate>
    </item>
  </channel>
</rss>