Hi everybody,
I configured my fe control to work on a virtual directory (IIS 6.0 on a WinSRV 2003).
WindowsAuthentication set to True, Impersonation set to True.
I can upload files, create folder, DELETE folder, but I receive a js alert when I try to delete or rename a file. The message say: "The selected file could not be deleted because the application did not have enough permissions. Please contact the administrator."
I give the impersonated user full controls to the folder but nothing ...
I configured my fe control to work on a virtual directory (IIS 6.0 on a WinSRV 2003).
WindowsAuthentication set to True, Impersonation set to True.
I can upload files, create folder, DELETE folder, but I receive a js alert when I try to delete or rename a file. The message say: "The selected file could not be deleted because the application did not have enough permissions. Please contact the administrator."
I give the impersonated user full controls to the folder but nothing ...
private void initFileManager(){ var sBPResourcePath = getBPResourcesPath(); var arBPResourcePaths = new string[] { sBPResourcePath }; rfeFileExplorer.AllowPaging = false; rfeFileExplorer.Configuration.DeletePaths = arBPResourcePaths; rfeFileExplorer.Configuration.UploadPaths = arBPResourcePaths; rfeFileExplorer.Configuration.ViewPaths = arBPResourcePaths; rfeFileExplorer.DisplayUpFolderItem = true; rfeFileExplorer.EnableCreateNewFolder = true; rfeFileExplorer.EnableOpenFile = true; //rfeFileExplorer.InitialPath = sBPResourcePath; rfeFileExplorer.Language = _sessionInfo.CurrentCultureCode; rfeFileExplorer.VisibleControls = GetVisibleControls();}private FileExplorerControls GetVisibleControls(){ FileExplorerControls explorerControls = 0; // explorerControls |= Telerik.Web.UI.FileExplorer.FileExplorerControls.AddressBox; explorerControls |= FileExplorerControls.Grid; explorerControls |= FileExplorerControls.Toolbar; explorerControls |= FileExplorerControls.TreeView; explorerControls |= FileExplorerControls.ContextMenus; return explorerControls;}