Hi,
On my localhost I am writing
Dim newsImagesFolderPath As String = Server.MapPath("~/temp/NewsImages/" & Domain)
Dim newsImagesFolderVirtualPath As String = "~/temp/NewsImages/" & Domain
If Not FolderExists(newsImagesFolderPath) Then
FolderCreate(newsImagesFolderPath)
End If
uxNewsEditor.ImageManager.ViewPaths = New String() {newsImagesFolderVirtualPath}
'uxNewsEditor.ImageManager.UploadPaths = New String() {newsImagesFolderVirtualPath}
'uxNewsEditor.ImageManager.DeletePaths = New String() {newsImagesFolderVirtualPath}
this is working but if I am specifying UploadPaths or Deletepaths, it stops working. Any idea ?
Furqan
On my localhost I am writing
Dim newsImagesFolderPath As String = Server.MapPath("~/temp/NewsImages/" & Domain)
Dim newsImagesFolderVirtualPath As String = "~/temp/NewsImages/" & Domain
If Not FolderExists(newsImagesFolderPath) Then
FolderCreate(newsImagesFolderPath)
End If
uxNewsEditor.ImageManager.ViewPaths = New String() {newsImagesFolderVirtualPath}
'uxNewsEditor.ImageManager.UploadPaths = New String() {newsImagesFolderVirtualPath}
'uxNewsEditor.ImageManager.DeletePaths = New String() {newsImagesFolderVirtualPath}
this is working but if I am specifying UploadPaths or Deletepaths, it stops working. Any idea ?
Furqan