I'm using a user control in my web application and on its Page_Load i'm using the following code
ClientAPI.RegisterPostBackEventHandler(Me, "CaseAssigned", AddressOf CaseAssignedSrv, False)
When i run the app i get the following error
'System.Web.UI.ResourceBasedLiteralControl' does not allow child controls.
If I try Me.Page instead of Me in the first parameter i get another error
A control cannot modify its parents' control collections.
Thanks in advance!