I'm creating a new project and including the RadEditor with it. I'm experiencing 2 issues and I hope that you can help me with these. The first issue is that when I declare the DeletePaths, UploadPaths and ViewPaths with "~/Images/Sections" I get the error "Invalid characters in the filename", however it takes me to that folder after the error. If I change the path to "~/Images" it works without the error. The second issue is that the upload and delete buttons are disabled. For all the other Managers (ie, documents, flash, media and templates) everything works?
Here is where I declare my paths
Here is the code behind
I've spent hours going over the forum and trying everything, but nothing seems to work. All my work so far has been on the localhost.
William
Here is where I declare my paths
<
ImageManager
DeletePaths
=
"~/Images/Sections"
MaxUploadFileSize
=
"1000000"
UploadPaths
=
"~/Images/Sections"
ViewPaths
=
"~/Images/Sections"
/>
Here is the code behind
Dim imagepath() As String = {"~/Images/Sections"}
If Not IsPostBack Then
RadEditor1.ImageManager.ViewPaths = imagepath
End If
I've spent hours going over the forum and trying everything, but nothing seems to work. All my work so far has been on the localhost.
William