Still Lost in installing the scripts HELP!!!!

  •  06-03-2005, 10:31 PM

    Still Lost in installing the scripts HELP!!!!

    Lets see how can I explain this?  I have created a 5 page website to one of my clients, the site consist of images and text only.  I wanted a solution for my client to edit the web pages her self.  So, I purchased CuteEditor for ASP, I uploaded the scripts into my host server, then I create a test.asp with the code like this:

    <!-- #include file = "include_CuteEditor.asp" -->
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
     
    <body bgcolor="#FFFFFF" text="#000000">
    <form name="form1" method="post" action="">
    <%
    Dim editor
    Set editor = New CuteEditor
    'Create a new editor class object
    editor.ID = "Editor1" 'Set the ID of this editor class
    editor.Text = "Type here" 'Set the initial HTML value of editor control                           
    editor.FilesPath = "CuteEditor_Files"
    editor.ImageGalleryPath = "/Uploads"                               
    editor.DisableItemList = "Save"
    editor.Draw()
     
     %>
    </form>
    </body>
    </html>


    When I type the URL to this page I am able to see it but, I want to edit the web pages I’ve created.  I am not a programmer I just happen to build a five-page site.  How can I integrate CuteEditor for ASP to my five web pages, so that  I can edit it time to time?  Please someone help me understand it, without using Jargon, but in Laymen’s terms.
View Complete Thread