How do I get started

Last post 09-22-2004, 12:17 PM by Adam. 3 replies.
Sort Posts: Previous Next
  •  09-20-2004, 2:33 PM 1875

    How do I get started

    Is their anyone that can tell me how I do the changes and where I do it so I can start using the product.  I have asked support, but... sorry to say, I do not understand what they mean.  This is the support I got:

     
     

    The software is located at:

    include_CuteEditor.asp

    CuteEditor_Files/*.*

    All the examples show you how to use it:

    Step 1:

    <!-- #include file = "include_CuteEditor.asp" -->

    Step 2:

    Set editor = New CuteEditor 'Create a new editor class object

    Hope it helps.
     
    I am not a programmer... but I hope some one will be abel to help me.... else I have used som  money on a product I can not use....
  •  09-20-2004, 2:43 PM 1877 in reply to 1875

    Re: How do I get started

     
    CuteEditor forASP is an advanced online web based ASP WYSIWYG editor. It enables ASP Web developers to replace your standard Textarea to a rich textbox.
     
    You must have some basic ASP knowledge to integrate this rich text editorscript into your ASP application. The end users doesn't need any script knowledge to create and publish web content as comes with friendly Microsoft Word™-like interface.
     
    Questions:
     
    1. Are your web sites using the ASP technology?
     
    2. Do you have any knowledge of ASP script?
     
     
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  09-21-2004, 2:27 AM 1881 in reply to 1877

    Re: How do I get started

    Thank you for your quick reply.

     
    Yes, my webpage can use asp and no, I do not have any knowledge of asp script.  But If you can help me with what I have to add/change I will be abel to do that.  My problem is ... i guess... that I do not know where to do this.
     
    Exaampel:
    Do I have to add this text on all my pages??:
    <!-- #include file = "include_CuteEditor.asp" -->
     
    And this,
    Set editor = New CuteEditor 'Create a new editor class object, where do I put it, and can i just copy and paste?
     
    Again, thank you for takeing your time to help me
     
    Cheers
    Klaus;)
  •  09-22-2004, 12:17 PM 1891 in reply to 1881

    Re: How do I get started

     Klaus,

     
    Step 1:
     
    Add the following code on the top of the pages need to use the CuteEditor:
     
     <!-- #include file = "include_CuteEditor.asp" -->
     
    Step 2:  Create your editor instance
     
     

    <%

        dim content

          content = "<FONT size=5 color=#2f4f4f>Type here...</FONT>"

         'Create a new editor class object

         Dim editor

         Set editor = New CuteEditor

         'Set the ID of this editor class

           editor.ID = "Editor1"

         'Set the initial HTML value of editor control

            editor.Text = content

            editor.FilesPath = "CuteEditor_Files"

            editor.ImageGalleryPath = "/Uploads"

          'You can hide the logo by set ShowLogo to true

          'editor.ShowLogo = "false"

          'editor.StyleSheetPath = "/grey2.css"

          'editor.Width = 740

          'editor.Height = 200

            editor.Draw()

         ' Retrieve the data from editor: Request.Form("Editor1_HTMLContent")

    %>

     
     
    These are the instructions to get the CuteEditor running.
     
    But I think you still need to get some help from a ASP developer for your particular projects.
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View as RSS news feed in XML