Hello, everyone!
We are developers from DNNGO. Since the SolPart control has been deleted in DNN8, it will throw some errors if the Container used in the page includes SolPart.
These errors can be fixed by removing the SolPart control in the Container.
First go to \Portals\_default\Containers, or \Portals\ID-System\Containers directory to find the Container.ascx files being used.
Then open these files with the editor, and remove the following two pieces of codes, the last step is to save it.
<%@ Register TagPrefix="dnn" TagName="ACTIONS" Src="~/Admin/Containers/SolPartActions.ascx" %>
<dnn:ACTIONS runat="server" id="dnnACTIONS" />
If the Actions control in the page can not work correctly, you can delete the following codes:
<%@ Register TagPrefix="dnn" TagName="ACTIONBUTTON" Src="~/Admin/Containers/ActionButton.ascx" %>
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON3" CommandName="PrintModule.Action" DisplayIcon="True" DisplayLink="False" />
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON3" CommandName="PrintModule.Action" DisplayIcon="True" DisplayLink="False" />
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON2" CommandName="SyndicateModule.Action" DisplayIcon="True" DisplayLink="False" />
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON4" CommandName="ModuleSettings.Action" DisplayIcon="True" DisplayLink="False" />