<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Post Complex JavaScript Objects to ASP.NET MVC Controllers</title>
	<atom:link href="http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/</link>
	<description>Making stuff up about web development since last week.</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:29:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Ken</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-43445</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Tue, 10 Jan 2012 22:58:47 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-43445</guid>
		<description>Beautiful.  Way, way better then hassling with custom action filters!</description>
		<content:encoded><![CDATA[<p>Beautiful.  Way, way better then hassling with custom action filters!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art Ardolino</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-39939</link>
		<dc:creator>Art Ardolino</dc:creator>
		<pubDate>Wed, 14 Dec 2011 22:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-39939</guid>
		<description>We just spent almost two hours trying to figure out why MVC would not interpret arrays in an object.  We finally figured it out it was the &quot;dots&quot; and then we googled for the missing dot problem and found this site.  We made one small change to allow for null objects, but then it worked!!!  This is awesome!!! Thank you so much.</description>
		<content:encoded><![CDATA[<p>We just spent almost two hours trying to figure out why MVC would not interpret arrays in an object.  We finally figured it out it was the &#8220;dots&#8221; and then we googled for the missing dot problem and found this site.  We made one small change to allow for null objects, but then it worked!!!  This is awesome!!! Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ezkdifyv</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-38804</link>
		<dc:creator>Ezkdifyv</dc:creator>
		<pubDate>Tue, 06 Dec 2011 11:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-38804</guid>
		<description>Do you need a work permit? &lt;a href=&quot;http://aduoenyk.centerblog.net&quot; rel=&quot;nofollow&quot;&gt;Nymphet Preteen&lt;/a&gt;  234106</description>
		<content:encoded><![CDATA[<p>Do you need a work permit? <a href="http://aduoenyk.centerblog.net" rel="nofollow">Nymphet Preteen<br />
</a>  234106</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anderson Lopes</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-30360</link>
		<dc:creator>Anderson Lopes</dc:creator>
		<pubDate>Fri, 30 Sep 2011 14:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-30360</guid>
		<description>Very nice, contragulations!</description>
		<content:encoded><![CDATA[<p>Very nice, contragulations!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Posting complex models to ASP.NET MVC &#171; I Prefer Jim</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-23009</link>
		<dc:creator>Posting complex models to ASP.NET MVC &#171; I Prefer Jim</dc:creator>
		<pubDate>Tue, 16 Aug 2011 12:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-23009</guid>
		<description>[...] Check out his post for details. [...]</description>
		<content:encoded><![CDATA[<p>[...] Check out his post for details. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil S</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-17582</link>
		<dc:creator>Anil S</dc:creator>
		<pubDate>Wed, 13 Jul 2011 15:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-17582</guid>
		<description>Thanks - Nick! This is cool and indeed a very good workaround. I found one issue, if the object properties has null value it is throwing an exception. I fixed it locally as
if (object[key] == null &#124;&#124; object[key] == undefined)
result[postKey] = object[key];
else if (object[key].toUTCString)
result[postKey] = object[key].toUTCString().replace(&quot;UTC&quot;, &quot;GMT&quot;);
else ...</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; Nick! This is cool and indeed a very good workaround. I found one issue, if the object properties has null value it is throwing an exception. I fixed it locally as<br />
if (object[key] == null || object[key] == undefined)<br />
result[postKey] = object[key];<br />
else if (object[key].toUTCString)<br />
result[postKey] = object[key].toUTCString().replace(&#8220;UTC&#8221;, &#8220;GMT&#8221;);<br />
else &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mxiybgjg</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-8027</link>
		<dc:creator>Mxiybgjg</dc:creator>
		<pubDate>Tue, 10 May 2011 12:20:57 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-8027</guid>
		<description>Very funny pictures &lt;a href=&quot;http://webspace.webring.com/people/kg/gumeaja/gumeaja.shtml&quot; rel=&quot;nofollow&quot;&gt;underage prelolitas porn pics&lt;/a&gt;  rxetoy</description>
		<content:encoded><![CDATA[<p>Very funny pictures <a href="http://webspace.webring.com/people/kg/gumeaja/gumeaja.shtml" rel="nofollow">underage prelolitas porn pics</a>  rxetoy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ifoknyoi</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-8026</link>
		<dc:creator>Ifoknyoi</dc:creator>
		<pubDate>Tue, 10 May 2011 12:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-8026</guid>
		<description>This site is crazy :) &lt;a href=&quot;http://webspace.webring.com/people/ho/ousycane/ousycane.shtml&quot; rel=&quot;nofollow&quot;&gt;preteen lolita nude thumbnails&lt;/a&gt;  kvomak</description>
		<content:encoded><![CDATA[<p>This site is crazy <img src='http://www.nickriggs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://webspace.webring.com/people/ho/ousycane/ousycane.shtml" rel="nofollow">preteen lolita nude thumbnails</a>  kvomak</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frenky</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-7703</link>
		<dc:creator>frenky</dc:creator>
		<pubDate>Sat, 07 May 2011 19:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-7703</guid>
		<description>GBtb2e http://gdjI3b7VaWpU1m0dGpvjRrcu9Fk.com</description>
		<content:encoded><![CDATA[<p>GBtb2e <a href="http://gdjI3b7VaWpU1m0dGpvjRrcu9Fk.com" rel="nofollow">http://gdjI3b7VaWpU1m0dGpvjRrcu9Fk.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VulgarBinary</title>
		<link>http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/comment-page-1/#comment-3544</link>
		<dc:creator>VulgarBinary</dc:creator>
		<pubDate>Fri, 18 Feb 2011 19:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=106#comment-3544</guid>
		<description>I can&#039;t tell you how often I&#039;ve turned to this plugin to solve brain dead model binding in MVC.  Thanks for the quick solution that has saved many dev&#039;s hours of screwing around with other more complex solutions for the same issue.

&lt;3</description>
		<content:encoded><![CDATA[<p>I can&#8217;t tell you how often I&#8217;ve turned to this plugin to solve brain dead model binding in MVC.  Thanks for the quick solution that has saved many dev&#8217;s hours of screwing around with other more complex solutions for the same issue.</p>
<p>&lt;3</p>
]]></content:encoded>
	</item>
</channel>
</rss>

