Re: Dynamic ImageGalleryPath in VB2005

  •  08-09-2007, 9:59 AM

    Re: Dynamic ImageGalleryPath in VB2005

    Further to the previous question, I have a strange problem :
     
    The following routine :
     
    Protected Sub Editor1_Init(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim tbxEditor1 As Editor = DetailsView1.FindControl("Editor1")
    tbxEditor1.Setting(
    "security:ImageGalleryPath") = "~/uploads/" & Profile.District
    tbxEditor1.Setting(
    "Security:FlashGalleryPath") = "~/uploads/" & Profile.District
    tbxEditor1.Setting(
    "security:MediaGalleryPath") = "~/uploads/" & Profile.District
    tbxEditor1.Setting(
    "security:FilesGalleryPath") = "~/uploads/" & Profile.District
    End Sub
     
    works well for three of the paths. It does not work for the FlashGallerypath...
     
    Looks like a bug ?
     
View Complete Thread