Hi there,
I set two seperate ViewPaths for the RadEditor.ImageManager, but somehow there's only the latter path "~/Image2" displayed in the ImageManger, I couldn't find the first view path. Could you please let me know how to solve it?
Protected
Sub
Page_Load(
ByVal
sender
As
Object
,
ByVal
e
As
EventArgs)
Handles
Me
.Load
Dim
viewPaths
As
String
() =
New
String
() {
"~/Image"
,
"~/Image2"
}
Dim
uploadPaths
As
String
() =
New
String
() {
"~/Image/New"
,
"~/Image2/New"
}
Dim
deletePaths
As
String
() =
New
String
() {
"~/Image/Del"
,
"~/Image2/Del"
}
If
Not
IsPostBack
Then
radEditor.ImageManager.ViewPaths = viewPaths
radEditor.ImageManager.UploadPaths = uploadPaths
radEditor.ImageManager.DeletePaths = deletePaths
End
If
End
Sub