|
Rank: Member Groups: Member
Joined: 8/25/2009 Posts: 12
|
HI
How to add Path Mappings for the FileExplorer control dynamically on the server side?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You just add it. There is nothing special about it. The code would be something like this:
Code: C#
EO.Web.PathMapping mapping = new EO.Web.PathMapping();
mapping.Path = "c:/images";
mapping.Url = "http://somesite.com/images";
FileExplorer1.PathMappings.Add(mapping);
Note the mapping has to be already working on your web server, which means user indeed can use http://somesite.com/images to access c:/images. Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 8/23/2009 Posts: 9
|
hi. how to change the root display text instead of the real path for now my root display text is e:\\somathing\\some i want it to be just "Root Folder"!
|
|