Hi,
I want to update the ViewPaths depending on login usernames. So each username will have different ViewPaths location. I tried the following code but it does not not work, the ViewPaths does not change. Please help me.
Thank you,
Khoa
I want to update the ViewPaths depending on login usernames. So each username will have different ViewPaths location. I tried the following code but it does not not work, the ViewPaths does not change. Please help me.
private void ChangeServerPath(string folderPath){ string[] path = new[] { folderPath }; fileExplorer.Configuration.ViewPaths = path; fileExplorer.Configuration.UploadPaths = path; fileExplorer.Configuration.DeletePaths = path; fileExplorer.TreeView.DataBind(); fileExplorer.DataBind();}Thank you,
Khoa