How do I get started?

Last post 05-16-2005, 1:38 PM by Adam. 1 replies.
Sort Posts: Previous Next
  •  05-16-2005, 1:19 PM 6733

    How do I get started?

    Hi, I just purchased cute editor for asp and I am lost on how to start using this script.  I've read the manual, but it dosen't mention about adding any lines on my web pages, besides for the "includes" line, and setting up enableall.asp and creating an "uploads" folder, I understand those steps but, it still dosen't work, what am I missing?  Please some one help me with a step by step "dummie" getting started guide. Thank you.
  •  05-16-2005, 1:38 PM 6735 in reply to 6733

    Re: How do I get started?

    No problem.

    First off, we must learn how to instantiate, or create the CuteEditor for ASP class.

    There are 3 steps
    involved.  

    Firstly, you must include the CuteEditor for ASP class file. Secondly, you must create a new

    CuteEditor for ASP class object. Thirdly, you must assign a unique ID to your CuteEditor for ASP control, as shown below:

    <%

    ' Create a new CuteEditor for ASP class object

    Dim editor Set editor = New CuteEditor
    'Set the ID of this editor class
    editor.ID = "Editor1"

    %>

     

    Once you’ve created a CuteEditor for ASP class object, you can set properties against that object, for example:

     <%

    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()
     %>       

                                                                                                              

    Note: You can place the CuteEditor for ASP "CuteEditor_Files" folder anywhere on your web server. You simply need to make sure that:

    1. You change the path in the <!-- #INCLUDE tag to reference the proper path to your CuteEditor for ASP class file

    2. You specify the proper path in the FilesPath property.

     


    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