or
The cellspacing attribute on the table element is obsolete. Use CSS insteadThe summary attribute is obsolete. Consider describing the structure of the table in a caption element or in a figure element containing the table; or, simplify the structure of the table so that no description is neededThe abbr attribute on the th element is obsolete. Consider instead beginning the cell contents with concise text, followed by further elaboration if needed.<add key="UNCPath" value="\\SampleServer\\FolderName" />
RadFileExplorer1.Configuration.ViewPaths = new string[] { ConfigurationManager.AppSettings["UNCPath"] }; public override DirectoryItem ResolveRootDirectoryAsTree(string path)
{
DirectoryItem originalFolder = base.ResolveRootDirectoryAsTree(path);Shows error on this part: DirectoryItem originalFolder = base.ResolveRootDirectoryAsTree(path);


Protected Sub Test_TestOrgChart_Load(sender As Object, e As System.EventArgs) Handles Me.Load BindOrgChart() End Sub Private Sub BindOrgChart(Optional ByVal ExpandAll As Boolean = True) Dim employees = CreateEmployees() RadOrgChartEmployees.DataFieldID = "EmployeeID" RadOrgChartEmployees.DataTextField = "EmployeeName" RadOrgChartEmployees.DataFieldParentID = "ManagerID" RadOrgChartEmployees.DataSource = employees RadOrgChartEmployees.DataBind() If ExpandAll Then RadOrgChartEmployees.ExpandAllNodes() Else RadOrgChartEmployees.CollapseAllNodes() End If End Sub Private Function CreateEmployees() As DataTable Dim employees = New DataTable() employees.Columns.Add("EmployeeID") employees.Columns.Add("ManagerID") employees.Columns.Add("EmployeeName") employees.Columns.Add("JobTitle") employees.Rows.Add(New String() {"1", Nothing, "Emp CEO", "CE0"}) employees.Rows.Add(New String() {"2", "1", "Emp President BSS", "President BSS"}) employees.Rows.Add(New String() {"3", "1", "Emp COO", "COO"}) employees.Rows.Add(New String() {"4", "2", "Emp VP ST", "VP Software Tech"}) employees.Rows.Add(New String() {"5", "2", "EMP Director SD", "Director Software Development"}) employees.Rows.Add(New String() {"6", "5", "EMP Developer", "Developer"}) employees.Rows.Add(New String() {"7", Nothing, "EMP CFO", "CFO"}) employees.Rows.Add(New String() {"8", "7", "EMP President IT", "President IT"}) Return employees End Function