<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Joe Stevens&#039; Blog &#187; Ajax</title>
	<atom:link href="http://www.joe-stevens.com/category/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joe-stevens.com</link>
	<description>Everything .NET and C#</description>
	<lastBuildDate>Sat, 21 Jan 2012 03:18:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>ASP.NET MVC 2 client side validation for dynamic fields added with ajax</title>
		<link>http://www.joe-stevens.com/2011/07/24/asp-net-mvc-2-client-side-validation-for-dynamic-fields-added-with-ajax/</link>
		<comments>http://www.joe-stevens.com/2011/07/24/asp-net-mvc-2-client-side-validation-for-dynamic-fields-added-with-ajax/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 23:43:10 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=639</guid>
		<description><![CDATA[It&#8217;s quite common to add fields to a form dynamically using ajax, for example you may have a list of phone numbers for a user, and they could have many different phone numbers. Using MVC you can easily add fields to a form by making an ajax call to an action that returns the rendered [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2011/07/24/asp-net-mvc-2-client-side-validation-for-dynamic-fields-added-with-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing and binding nested lists with ASP.NET MVC 2</title>
		<link>http://www.joe-stevens.com/2011/06/06/editing-and-binding-nested-lists-with-asp-net-mvc-2/</link>
		<comments>http://www.joe-stevens.com/2011/06/06/editing-and-binding-nested-lists-with-asp-net-mvc-2/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 00:36:28 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=541</guid>
		<description><![CDATA[Dynamically editing lists of data and binding back to the model with MVC is a little complicated as the id&#8217;s of the form elements need to all tie up for binding to succeed. Recently I had a model, which contained a list of an object, which in turn contained another nested list. Getting this to easily [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2011/06/06/editing-and-binding-nested-lists-with-asp-net-mvc-2/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC simple server-side ajax paging using jQuery</title>
		<link>http://www.joe-stevens.com/2011/05/30/asp-net-mvc-simple-server-side-ajax-paging-using-jquery/</link>
		<comments>http://www.joe-stevens.com/2011/05/30/asp-net-mvc-simple-server-side-ajax-paging-using-jquery/#comments</comments>
		<pubDate>Mon, 30 May 2011 00:12:18 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[code first]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=579</guid>
		<description><![CDATA[It&#8217;s always important to page your data on the server side so that you are only hitting the database to get the page you currently need, rather than getting all the results and paging on the client. In this post I&#8217;ll explain how to perform simple ajax paging on the server side using ASP.NET MVC [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2011/05/30/asp-net-mvc-simple-server-side-ajax-paging-using-jquery/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>How to convert a JSON date serialized by an ASMX web service to a JavaScript Date object</title>
		<link>http://www.joe-stevens.com/2010/06/29/how-to-convert-a-json-date-serialized-by-an-asmx-web-service-to-a-javascript-date-object/</link>
		<comments>http://www.joe-stevens.com/2010/06/29/how-to-convert-a-json-date-serialized-by-an-asmx-web-service-to-a-javascript-date-object/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 03:36:42 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[ASMX]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=494</guid>
		<description><![CDATA[JSON doesn&#8217;t have a standard way to represent a date. You can read about the reasons behind this here. If you are using an ASMX web service returning JSON then you&#8217;ll find it serializes the DateTime object to a string that looks like this: /Date(1278943200000)/ The numer in this string is the number of milliseconds [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/06/29/how-to-convert-a-json-date-serialized-by-an-asmx-web-service-to-a-javascript-date-object/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Populate a select dropdown list using jQuery and Ajax</title>
		<link>http://www.joe-stevens.com/2010/02/23/populate-a-select-dropdown-list-using-jquery-and-ajax/</link>
		<comments>http://www.joe-stevens.com/2010/02/23/populate-a-select-dropdown-list-using-jquery-and-ajax/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 02:49:36 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=459</guid>
		<description><![CDATA[In this post I&#8217;ll explain how to populate a select dropdownlist using jQuery and Ajax.  I am using an ASP.NET web application and page methods to perform the Ajax calls.  Using page methods means that you do not need a seperate web service, which is good if the functionality is specifically for the page.  The [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/02/23/populate-a-select-dropdown-list-using-jquery-and-ajax/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Creating a Delete link with MVC using POST to avoid security issues</title>
		<link>http://www.joe-stevens.com/2010/02/16/creating-a-delete-link-with-mvc-using-post-to-avoid-security-issues/</link>
		<comments>http://www.joe-stevens.com/2010/02/16/creating-a-delete-link-with-mvc-using-post-to-avoid-security-issues/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 03:43:39 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=438</guid>
		<description><![CDATA[It is fairly common to have a list of records with a hyperlink to delete a record.  The problem here is that with MVC the hyperlink will use a GET request to delete a record.  This is a fairly big security issue as anybody can browse to the URL and delete a record from your system.  [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/02/16/creating-a-delete-link-with-mvc-using-post-to-avoid-security-issues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Edit in place / inline editing with jQuery, jTemplates and ASP.NET</title>
		<link>http://www.joe-stevens.com/2010/01/12/edit-in-place-inline-editing-with-jquery-jtemplates-and-asp-net/</link>
		<comments>http://www.joe-stevens.com/2010/01/12/edit-in-place-inline-editing-with-jquery-jtemplates-and-asp-net/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 02:19:05 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=386</guid>
		<description><![CDATA[Download source In this post I talked about how to use the jTemplates plugin for jQuery. Using my final example in the post I thought it would be cool to try and add some &#8216;edit in place&#8217; functionality to the table. For this to work I&#8217;ve created a Data Access Layer using Linq to XML. [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/12/edit-in-place-inline-editing-with-jquery-jtemplates-and-asp-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the jTemplate jquery plugin with ajax and ASP.NET</title>
		<link>http://www.joe-stevens.com/2010/01/05/using-the-jtemplate-jquery-plugin-with-ajax-and-asp-net/</link>
		<comments>http://www.joe-stevens.com/2010/01/05/using-the-jtemplate-jquery-plugin-with-ajax-and-asp-net/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 04:32:03 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[jtemplates]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=367</guid>
		<description><![CDATA[Download source A guy in work introduced me to jTemplates, a template engine plugin for jQuery. It allows you to easily bind JavaScript objects to a defined template and also has some other nifty features. I&#8217;ve found jTemplates to be particularly good when using ajax to display any information quickly and easily. First I&#8217;ll explain [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/05/using-the-jtemplate-jquery-plugin-with-ajax-and-asp-net/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Using jQuery to make ajax calls to an ASMX web service using ASP.NET</title>
		<link>http://www.joe-stevens.com/2010/01/04/using-jquery-to-make-ajax-calls-to-an-asmx-web-service-using-asp-net/</link>
		<comments>http://www.joe-stevens.com/2010/01/04/using-jquery-to-make-ajax-calls-to-an-asmx-web-service-using-asp-net/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 06:02:45 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.joe-stevens.com/?p=351</guid>
		<description><![CDATA[Download source Making ajax calls to an ASP.NET web service using jQuery is too easy.  In this post I&#8217;ll explain how to do it! Start by creating a new web project and adding a new ASMX web service: Open the new web service and uncomment the following line to allow the web service to be called [...]]]></description>
		<wfw:commentRss>http://www.joe-stevens.com/2010/01/04/using-jquery-to-make-ajax-calls-to-an-asmx-web-service-using-asp-net/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

