We are having problems with all DirectEvents when loading controls dynamically. We have attached an VS 2010 project with an simple page loading an UserControl with just an Panel and an Button. The Button has an DirectEvents.Click event that just makes an alert but we get the following error when clicking the button.

Server Error in '/' Application.
The control with ID 'ctl02_ctl02' not found
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Web.HttpException: The control with ID 'ctl02_ctl02' not found
Source Error: 
Line 2505:                    if (ctrl == null)
Line 2506:                    {
Line 2507:                        throw new HttpException("The control with ID '{0}' not found".FormatWith(controlID));
Line 2508:                    }
Line 2509:                }

Source File:C:\Projects\Coolite.net\Ext.Net\Core\ResourceManager\ResourceManager.cs    Line:2507 
Stack Trace: 
[HttpException (0x80004005): The control with ID 'ctl02_ctl02' not found]
   Ext.Net.ResourceManager.RaisePostBackEvent(String eventArgument) in C:\Projects\Coolite.net\Ext.Net\Core\ResourceManager\ResourceManager.cs:2507
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +176
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5019

Version Information: Microsoft .NET Framework Version:4.0.30128; ASP.NET Version:4.0.30128.1