ASP.NET 2.0 Asynchronous User Control Not Working - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:35:30Z http://stackoverflow.com/feeds/question/273546 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/273546/asp-net-2-0-asynchronous-user-control-not-working 1 ASP.NET 2.0 Asynchronous User Control Not Working Charles 2008-11-07T20:27:41Z 2008-11-07T22:01:10Z <p>I'm trying to get a user control working asynchronously, yet no matter what I do it continues to work synchronously. I've stripped it down to its bare minimum as a test web application. This would be the user control:</p> <pre><code>&lt;%@ Control Language="C#" %&gt; &lt;script runat="server"&gt; SqlConnection m_oConnection; SqlCommand m_oCommand; void Page_Load(object sender, EventArgs e) { Trace.Warn("Page_Load"); string strDSN = ConfigurationManager.ConnectionStrings["DSN"].ConnectionString + ";async=true"; string strSQL = "waitfor delay '00:00:10'; select * from MyTable"; m_oConnection = new SqlConnection(strDSN); m_oCommand = new SqlCommand(strSQL, m_oConnection); m_oConnection.Open(); Page.RegisterAsyncTask(new PageAsyncTask(new BeginEventHandler(BeginHandler), new EndEventHandler(EndHandler), new EndEventHandler(TimeoutHandler), null, true)); Page.ExecuteRegisteredAsyncTasks(); } IAsyncResult BeginHandler(object src, EventArgs e, AsyncCallback cb, object state) { Trace.Warn("BeginHandler"); return m_oCommand.BeginExecuteReader(cb, state); } void EndHandler(IAsyncResult ar) { Trace.Warn("EndHandler"); GridView1.DataSource = m_oCommand.EndExecuteReader(ar); GridView1.DataBind(); m_oConnection.Close(); } void TimeoutHandler(IAsyncResult ar) { Trace.Warn("TimeoutHandler"); } &lt;/script&gt; &lt;asp:gridview id="GridView1" runat="server" /&gt; </code></pre> <p>And this would be the page in which I host the control three times:</p> <pre><code>&lt;%@ page language="C#" trace="true" async="true" asynctimeout="60" %&gt; &lt;%@ register tagprefix="uc" tagname="mycontrol" src="~/MyControl.ascx" %&gt; &lt;html&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;uc:mycontrol id="MyControl1" runat="server" /&gt; &lt;uc:mycontrol id="MyControl2" runat="server" /&gt; &lt;uc:mycontrol id="MyControl3" runat="server" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>The page gets displayed without errors, but the trace at the bottom of the page shows each control instance is processed synchronously. What am I doing wrong? Is there a configuration setting somewhere I'm missing?</p> http://stackoverflow.com/questions/273546/asp-net-2-0-asynchronous-user-control-not-working/273717#273717 2 Answer by Charles for ASP.NET 2.0 Asynchronous User Control Not Working Charles 2008-11-07T21:36:06Z 2008-11-07T21:42:08Z <p>Looks like I can answer my own question. The user control should not be calling <code>Page.ExecuteRegisteredAsyncTasks</code>. By doing that, the control was adding the async task, running it, and waiting for it to complete.</p> <p>Instead, each instance of the user control should call only <code>Page.RegisterAsyncTask</code>. After each control instance has done this the page automatically calls <code>RegistereAsyncTask</code> running all three registered async tasks simultaniously.</p> <p>So here is the new user control:</p> <pre><code>&lt;%@ Control Language="C#" %&gt; &lt;script runat="server"&gt; SqlConnection m_oConnection; SqlCommand m_oCommand; void Page_Load(object sender, EventArgs e) { Trace.Warn(ID, "Page_Load - " + Thread.CurrentThread.GetHashCode().ToString()); string strDSN = ConfigurationManager.ConnectionStrings["DSN"].ConnectionString + ";async=true"; string strSQL = "waitfor delay '00:00:10'; select * from TEProcessedPerDay where Date &gt; dateadd(day, -90, getutcdate()) order by Date asc"; m_oConnection = new SqlConnection(strDSN); m_oCommand = new SqlCommand(strSQL, m_oConnection); m_oConnection.Open(); Page.RegisterAsyncTask(new PageAsyncTask(new BeginEventHandler(BeginHandler), new EndEventHandler(EndHandler), new EndEventHandler(TimeoutHandler), null, true)); } IAsyncResult BeginHandler(object src, EventArgs e, AsyncCallback cb, object state) { Trace.Warn(ID, "BeginHandler - " + Thread.CurrentThread.GetHashCode().ToString()); return m_oCommand.BeginExecuteReader(cb, state); } void EndHandler(IAsyncResult ar) { Trace.Warn(ID, "EndHandler - " + Thread.CurrentThread.GetHashCode().ToString()); GridView1.DataSource = m_oCommand.EndExecuteReader(ar); GridView1.DataBind(); m_oConnection.Close(); } void TimeoutHandler(IAsyncResult ar) { Trace.Warn(ID, "TimeoutHandler - " + Thread.CurrentThread.GetHashCode().ToString()); } &lt;/script&gt; &lt;asp:gridview id="GridView1" runat="server" /&gt; </code></pre> <p>And the unchanged page that creates three instances of the control:</p> <pre><code>&lt;%@ page language="C#" async="true" trace="true" %&gt; &lt;%@ register tagprefix="uc" tagname="mycontrol" src="~/MyControl.ascx" %&gt; &lt;html&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;uc:mycontrol id="MyControl1" runat="server" /&gt; &lt;uc:mycontrol id="MyControl2" runat="server" /&gt; &lt;uc:mycontrol id="MyControl3" runat="server" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>