Re: Image Problem

  •  11-08-2005, 5:49 AM

    Re: Image Problem

    Here is the complete code im wrote but images doesnt appear

    Dim strpath As String = Me.Page.Request.Url.Scheme + Me.Page.Request.Url.SchemeDelimiter +Me.Page.Request.Url.Host + Me.Page.Request.ApplicationPath + "/"

    With Editor1
    .BaseHref = strpath + "/onlinewebbuilder"
    .AllowPasteHtml = False

    .DisableAutoFormatting = True

    .EditCompleteDocument = True

    .EditorWysiwygModeCss = struserpath + "/css/style.css"

    .CssClass = struserpath + "/css/style.css"

    .RemoveTBODYTag = True

    .UseRelativeLinks = True

    .RemoveServerNamesFromUrl = False

    .SetSecurityFilesGalleryPath(struserpath)

    .SetSecurityGalleryPath(struserpath)

    .SetSecurityFlashGalleryPath(struserpath + "/Flash")

    .SetSecurityMediaGalleryPath(struserpath + "/Media")

    .SetSecurityTemplateGalleryPath(struserpath + "/Template")

    .SetSecurityImageGalleryPath(struserpath + "/Images")

    .LoadHtml(struserpath + "/index.html")

    .ActiveTab = CuteEditor.TabType.View

    .ShowPreviewMode = True

    End With

View Complete Thread