I am using the FileExplorer with the Editor control. When I load the page, I get the following error:
Server Error in '/' Application.
Setting value is required (Role='*', Profile='', NodePath='controls/FileExplorer', AttrName='rootFolder'), please check the documentation for details about how to add EO configuration items into your web.config.
I have found nothing in the documentation that references these settings. Can you provide a reference or direction?
here is my markup:
Code: HTML/ASPX
<asp:Panel ID="ui_pnl_editSection" runat="server" DefaultButton="ui_btn_Update">
<eo:Editor ID="Editor1"
ToolBarSet="Full"
runat="server"
Width="600px"
Height="350px"
ColorPickerID="ColorPicker1">
</eo:Editor>
<eo:ColorPicker
ID="ColorPicker1"
runat="server">
<PopupCollapseEffect Type="GradientWipeUp" Duration="3" />
<PopupExpandEffect Type="GradientWipeDown" Duration="3" />
</eo:ColorPicker>
<eo:FileExplorer
ID="FileExplorer1"
runat="server"
AllowUpload="true">
</eo:FileExplorer>
<br /><br /><center>
<asp:Button ID="ui_btn_Update" runat="server" Text=" Save " OnClick="ui_btn_Update" />
<asp:Button ID="ui_btn_Cancel" runat="server" Text=" Cancel " />
</center><br /><br />
</asp:Panel>
Thanks.
Duane