HTTP 500. Error processing request. (gdiplus.dll)

boelectronic

Banned
Messages
46
Reaction score
0
Points
0
System.DllNotFoundException: gdiplus.dll
at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong&,System.Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&)
at System.Drawing.GDIPlus..cctor () [0x00000]
________________________

after putting below code, I got that error, I understand linux server cannot support such file, but, what code I can use instead of <asp:menu> or what change I can apply to it to make it working on my site for navigation menu based on my XML site map?
:rant2:
Code:
        <asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" 
            Orientation="Horizontal" Width="100%">
            <DataBindings>
                <asp:MenuItemBinding DataMember="SiteMapNode" TextField="Title" />
            </DataBindings>
        </asp:Menu>
        <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" 
            ShowStartingNode="False" />
 
Top