<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Handling Multiple Asynchronous Postbacks</title>
	<atom:link href="http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/</link>
	<description>Simple Thoughts from a Self-Proclaimed Novice</description>
	<lastBuildDate>Mon, 06 Jul 2009 00:56:58 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: A User control with FileUpload not working - ASP.NET Forums</title>
		<link>http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-193</link>
		<dc:creator>A User control with FileUpload not working - ASP.NET Forums</dc:creator>
		<pubDate>Mon, 06 Jul 2009 00:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-193</guid>
		<description>[...] http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/" rel="nofollow">http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How can I get the actual ID from get_postBackElement - ASP.NET Forums</title>
		<link>http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-185</link>
		<dc:creator>How can I get the actual ID from get_postBackElement - ASP.NET Forums</dc:creator>
		<pubDate>Wed, 06 May 2009 16:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-185</guid>
		<description>[...] have the following JS code extracted from the following link (http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-18...) var prm = Sys.WebForms.PageRequestManager.getInstance(); [...]</description>
		<content:encoded><![CDATA[<p>[...] have the following JS code extracted from the following link (<a href="http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-18.." rel="nofollow">http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-18..</a>.) var prm = Sys.WebForms.PageRequestManager.getInstance(); [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: disturbedbuddha</title>
		<link>http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-64</link>
		<dc:creator>disturbedbuddha</dc:creator>
		<pubDate>Tue, 15 Jan 2008 15:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-64</guid>
		<description>&lt;strong&gt;Dale:&lt;/strong&gt;

Thanks for the feedback.  You are totally right about the forms collection.  I never got around to fixing that from my test page.  As for the sorts not queuing, I&#039;d be interested if you could &lt;a href=&quot;mailto:andrew_frederick@verizon.net&quot; rel=&quot;nofollow&quot;&gt;email me&lt;/a&gt; the page you are using.  I think you must be getting an error from something else that is precluding the javascript from running.</description>
		<content:encoded><![CDATA[<p><strong>Dale:</strong></p>
<p>Thanks for the feedback.  You are totally right about the forms collection.  I never got around to fixing that from my test page.  As for the sorts not queuing, I&#8217;d be interested if you could <a href="mailto:andrew_frederick@verizon.net" rel="nofollow">email me</a> the page you are using.  I think you must be getting an error from something else that is precluding the javascript from running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale</title>
		<link>http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-63</link>
		<dc:creator>Dale</dc:creator>
		<pubDate>Tue, 15 Jan 2008 00:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/#comment-63</guid>
		<description>Good post and good site...nice and simple, although I am having a hard time getting this example of yours to work.

Your example will capture, store, and correctly re-call _dopostback, but I feel like something is missing here because while the queued requests are sent and received, only the first request will actually be updated by the browser. For example, say I had a gridview inside of an updatepanel control with two sortable columns and I clicked on the first column header (to initiate a postback that will do the sort) and then the second (queueing the 2nd request). The first request will complete like normal and the the second will be issued, but even though a response is sent back from the server the browser never actually displays the   changes made to the contents of the updatepanel. Any ideas?

As an aside, one (rather obvious) thing worth noting:

On the following line
   argsQue.push(document.form1.__EVENTARGUMENT.value);
should be something like
   argsQue.push(document.forms[0].__EVENTARGUMENT.value);
(assuming that you only have one form on the page holding your controls)</description>
		<content:encoded><![CDATA[<p>Good post and good site&#8230;nice and simple, although I am having a hard time getting this example of yours to work.</p>
<p>Your example will capture, store, and correctly re-call _dopostback, but I feel like something is missing here because while the queued requests are sent and received, only the first request will actually be updated by the browser. For example, say I had a gridview inside of an updatepanel control with two sortable columns and I clicked on the first column header (to initiate a postback that will do the sort) and then the second (queueing the 2nd request). The first request will complete like normal and the the second will be issued, but even though a response is sent back from the server the browser never actually displays the   changes made to the contents of the updatepanel. Any ideas?</p>
<p>As an aside, one (rather obvious) thing worth noting:</p>
<p>On the following line<br />
   argsQue.push(document.form1.__EVENTARGUMENT.value);<br />
should be something like<br />
   argsQue.push(document.forms[0].__EVENTARGUMENT.value);<br />
(assuming that you only have one form on the page holding your controls)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
