I'm having a RadFileExplorer on my program and mapping it to a Shared Drive. The first level of treeview is loading as expected and when I click on the expand button on the treeview, the folders are not being loaded. And any files are not displayed on the file viewer on the right column. Below is my code, kindly let me know what could be the issue.
protected
void
Page_Load(
object
sender, EventArgs e)
{
try
{
if
(!Page.IsPostBack)
{
string
[] viewPaths = Directory.GetDirectories(@
"\\vmtywebAA02\develop\", "
*", SearchOption.TopDirectoryOnly);
RadFileExplorer1.Configuration.ViewPaths = viewPaths;
RadFileExplorer1.Configuration.SearchPatterns =
new
[] {
"*.*"
};
RadFileExplorer1.Configuration.ContentProviderTypeName =
typeof
(CustomFileSystemProvider).AssemblyQualifiedName;
}
}
catch
(Exception)
{
throw
;
}
}