Hello,
Using customn controls with bundling fails due to following code:
registeredControls.Add(ToolkitScriptManagerHelper.GetAssembly(control.Assembly) .GetType(control.Assembly + "." + control.Name));
Should be:
registeredControls.Add(ToolkitScriptManagerHelper.GetAssembly(control.Assembly) .GetType(control.Name));
Comments: I guess its the same problem as 27706 27585 27616 27507 27483
Using customn controls with bundling fails due to following code:
registeredControls.Add(ToolkitScriptManagerHelper.GetAssembly(control.Assembly) .GetType(control.Assembly + "." + control.Name));
Should be:
registeredControls.Add(ToolkitScriptManagerHelper.GetAssembly(control.Assembly) .GetType(control.Name));
Comments: I guess its the same problem as 27706 27585 27616 27507 27483