Re: How do I get started

  •  09-22-2004, 12:17 PM

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