Posted 11 May 2026, 7:37 am EST
Hi,
Migrate from 2010v1 to 2025v2 399 in ASP.NET WebForms NET Framework 4.8.1.
Using C1Expander from C1.Web.Wijmo.Controls.48.dll
My legacy code:
<div id="filters" style=" background-color:Transparent; height:180px; margin-top:40px;" class="divcontent">
<cc7:C1Expander ID="C1Expander1" runat="server" HeaderSize="" Height="" Width="100%" ExpandDirection="Bottom" Expanded="False"
UseEmbeddedVisualStyles="False" VisualStyle="Vista" VisualStylePath="~/VisualStyles">
<Header> <asp:Literal ID="filtersLiteral" Text="Filtros avanzados" runat="server"></asp:Literal>
</Header>
<Content>
<div id="tree1" class="" style="background-color:Transparent; float:left; margin-right:10px; margin-left:10px; height:500px; width: 300px">
<asp:UpdatePanel ID ="UpdataPanelTree1" runat="server">
<ContentTemplate>
<asp:Panel ID="Panel3" runat="server" ScrollBars="None" Height="100%" Width="100%"
BackColor="Transparent" BorderWidth="1px" BorderStyle="None" BorderColor="Black"
EnableTheming="True">
....
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<div id="tree2" class="" style=" background-color:Transparent; float:left; margin-right:10px; height:500px; width: 400px">
<asp:UpdatePanel ID ="UpdatePanelTree2" runat="server">
<ContentTemplate>
<asp:Panel ID="Panel5" runat="server" ScrollBars="None" Height="90%" Width="100%" BackColor="Transparent" BorderWidth="1px" BorderStyle="None" BorderColor="Black"
EnableTheming="True">
..
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
</div>
any suggestions ? thanks all
