Re: how will the ASP code of Editor be embedded inside the <textarea> tags?

  •  09-30-2004, 11:06 AM

    Re: how will the ASP code of Editor be embedded inside the <textarea> tags?

    Hi FF1user,
     
     
    1- Can you please show me an example of how your code <%    %> is linked to a specific textarea of a form? (assuming this FormField writes back to a memo database field for example).
     
    For example, you have a regular textarea:
     
     

    <form name="theForm" action="Get_HtmlContent.asp" method="post" ID="Form1">

        <textarea name="Editor2_HTMLContent" ROWS=3 COLS=30>

    </form>

     
    Now you want to replace your Textarea to a web based WYSIWYG HTML editor.
     
    <form name="theForm" action="Get_HtmlContent.asp" method="post" ID="Form1">

        <%

            Dim editor

            Set editor = New CuteEditor

               editor.ID = "Editor1"

               editor.Text = content

               eitor.FilesPath = "/ASP/CuteEditor_Files"

               editor.ImageGalleryPath = "/Uploads"

               editor.MaxImageSize = 50

               editor.Height = 240

               editor.Draw()

        %>

    </form>

     
    2- I have a shared hosting, does ANYTHING need to be INSTALLED on the server?
     
    No, this is a pure script application. There is nothing needed to installed on the server. All you need to do is copying the script to your server.
     
     
    3- I develop my single site on a local server and upload my files, will the WebSite License ($50) be suitable for me?
     
    Yes, that's enough for a single site.
     
    Keep me posted
     

    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