Change for absolute URLS

Last post 07-10-2008, 3:07 PM by Bryan Meller. 3 replies.
Sort Posts: Previous Next
  •  07-09-2008, 9:28 AM 42057

    Change for absolute URLS

    where set to switch to absolute urls ?
  •  07-09-2008, 10:48 AM 42060 in reply to 42057

    Re: Change for absolute URLS

  •  07-10-2008, 3:03 PM 42117 in reply to 42060

    Re: Change for absolute URLS

    I tried:
    <%
      Dim editor
      Set editor = New CuteEditor
      editor.ID = "conteudo"
      editor.Text = objTextos("conteudo")
      editor.FilesPath = "editor/CuteEditor_Files"
      editor.AutoConfigure = "default"
      editor.EditorBodyStyle = "font:normal 12px arial;"
      editor.EditorWysiwygModeCss = "/editor/asp.css"
      editor.EditorURLType = Absolute
      editor.Draw()
    %>
    and gave the following error:
    Object doesn't support this property or method: 'Absolute.EditorURLType'
    __________________________________________________________________________
    and tried:
    <%
      Dim editor
      Set editor = New CuteEditor
      editor.ID = "conteudo"
      editor.Text = objTextos("conteudo")
      editor.FilesPath = "editor/CuteEditor_Files"
      editor.AutoConfigure = "default"
      editor.EditorBodyStyle = "font:normal 12px arial;"
      editor.EditorWysiwygModeCss = "/editor/asp.css"
      editor.URLType = Absolute
      editor.Draw()
    %>
    and to use images of the editor continue Linking / uploads / image.gif
  •  07-10-2008, 3:07 PM 42118 in reply to 42117

    Re: Change for absolute URLS

    I got this way
    <%
      Dim editor
      Set editor = New CuteEditor
      editor.ID = "conteudo"
      editor.Text = objTextos("conteudo")
      editor.FilesPath = "editor/CuteEditor_Files"
      editor.AutoConfigure = "default"
      editor.EditorBodyStyle = "font:normal 12px arial;"
      editor.EditorWysiwygModeCss = "/editor/asp.css"
      editor.URLType = "Absolute"
      editor.Draw()
    %>

    thanks for your help
View as RSS news feed in XML