Re: How do I get started?

  •  05-16-2005, 1:38 PM

    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 Complete Thread