<?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: A Nice, Clean jQuery iFramer Example</title> <atom:link href="http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/feed/" rel="self" type="application/rss+xml" /><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/</link> <description>practical web design &#38; development</description> <lastBuildDate>Fri, 18 May 2012 18:53:09 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: trent</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-34357</link> <dc:creator>trent</dc:creator> <pubDate>Mon, 09 Jan 2012 16:38:45 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-34357</guid> <description>Adam, Thanks, I&#039;m glad you got it working!</description> <content:encoded><![CDATA[<p>Adam, Thanks, I&#8217;m glad you got it working!</p> ]]></content:encoded> </item> <item><title>By: Adam</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-34356</link> <dc:creator>Adam</dc:creator> <pubDate>Mon, 09 Jan 2012 15:24:28 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-34356</guid> <description>My issue was on the server side.for anyone using ASP.NET MVC use a ContentResult in your action, like this.[HttpPost]
public ContentResult UploadFile(CaseStudy model, HttpPostedFileBase file)
{
var result = new ContentResult();
string responseMsg = _caseStudyService.AddAsset(model, file);
result.Content = new JavaScriptSerializer().Serialize(responseMsg);return result;
}Thanks for the great script man. It&#039;s simple and it works.-Adam</description> <content:encoded><![CDATA[<p>My issue was on the server side.</p><p>for anyone using ASP.NET MVC use a ContentResult in your action, like this.</p><p>[HttpPost]<br
/> public ContentResult UploadFile(CaseStudy model, HttpPostedFileBase file)<br
/> {<br
/> var result = new ContentResult();<br
/> string responseMsg = _caseStudyService.AddAsset(model, file);<br
/> result.Content = new JavaScriptSerializer().Serialize(responseMsg);</p><p> return result;<br
/> }</p><p>Thanks for the great script man. It&#8217;s simple and it works.</p><p>-Adam</p> ]]></content:encoded> </item> <item><title>By: Adam</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-34355</link> <dc:creator>Adam</dc:creator> <pubDate>Mon, 09 Jan 2012 15:11:20 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-34355</guid> <description>For me the onCompleate callback never throws the alert. The file is getting uploaded which is great but I am unable to alert the response which means I can&#039;t do any validation.Any suggestions.Thanks,-Adam</description> <content:encoded><![CDATA[<p>For me the onCompleate callback never throws the alert. The file is getting uploaded which is great but I am unable to alert the response which means I can&#8217;t do any validation.</p><p>Any suggestions.</p><p>Thanks,</p><p>-Adam</p> ]]></content:encoded> </item> <item><title>By: mahavir</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-34341</link> <dc:creator>mahavir</dc:creator> <pubDate>Thu, 05 Jan 2012 08:37:25 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-34341</guid> <description>this is test email</description> <content:encoded><![CDATA[<p>this is test email</p> ]]></content:encoded> </item> <item><title>By: Téo Victor</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-27095</link> <dc:creator>Téo Victor</dc:creator> <pubDate>Fri, 22 Jul 2011 14:30:46 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-27095</guid> <description>Very useful, thank you...=)</description> <content:encoded><![CDATA[<p>Very useful, thank you&#8230;=)</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-16129</link> <dc:creator>trent</dc:creator> <pubDate>Tue, 06 Apr 2010 11:48:59 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-16129</guid> <description>The message returned by the page submit should be in the first parameter of the callback function</description> <content:encoded><![CDATA[<p>The message returned by the page submit should be in the first parameter of the callback function</p> ]]></content:encoded> </item> <item><title>By: Stile</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-16122</link> <dc:creator>Stile</dc:creator> <pubDate>Mon, 05 Apr 2010 21:36:49 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-16122</guid> <description>First of all, thank you because the plugin submits the file data fine. The main problem is that the message from the server is display in a different page which for me defeats the whole purpose. How do you display the message from the server in the same form page?</description> <content:encoded><![CDATA[<p>First of all, thank you because the plugin submits the file data fine. The main problem is that the message from the server is display in a different page which for me defeats the whole purpose. How do you display the message from the server in the same form page?</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-14221</link> <dc:creator>trent</dc:creator> <pubDate>Thu, 31 Dec 2009 04:15:53 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-14221</guid> <description>&quot;data&quot; is the content output by the php (or whatever type page is posted to).</description> <content:encoded><![CDATA[<p>&#8220;data&#8221; is the content output by the php (or whatever type page is posted to).</p> ]]></content:encoded> </item> <item><title>By: S-Article</title><link>http://trentrichardson.com/2009/09/23/a-nice-clean-jquery-iframer-example/comment-page-1/#comment-14208</link> <dc:creator>S-Article</dc:creator> <pubDate>Wed, 30 Dec 2009 04:17:18 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=391#comment-14208</guid> <description>I&#039;m not jquery fun. However i had a small project which leads me to this page and to others but this little piece of code, helped me to solve my problem. I&#039;ve made some small changes to it. However i didn&#039;t undertand what&#039;s with the &quot;data&quot; this is coming from php or how?</description> <content:encoded><![CDATA[<p>I&#8217;m not jquery fun. However i had a small project which leads me to this page and to others but this little piece of code, helped me to solve my problem. I&#8217;ve made some small changes to it. However i didn&#8217;t undertand what&#8217;s with the &#8220;data&#8221; this is coming from php or how?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/15 queries in 0.037 seconds using disk: basic
Object Caching 343/344 objects using disk: basic

Served from: trentrichardson.com @ 2012-05-21 04:25:03 -->
