Re: SAVE button not working in 6.6 version

  •  02-13-2014, 7:54 AM

    Re: SAVE button not working in 6.6 version

    Hi,

     

    Please create an page name example.asp with the code below and test it with the new version. Does it work for you?

     

    My email is Kenneth@CuteSoft.net 

     

     

    1. <!-- #include file = "cuteeditor_files/include_CuteEditor.asp" -->   
    2. <html>      
    3.     <head>  
    4.   
    5. <meta name="robots" content="noindex,nofollow" >  
    6.         <%  
    7.             dim result  
    8.             result = ""  
    9.             If request.QueryString("postback") = "true" then  
    10.                 result = Request.Form("Editor1")  
    11.             End if  
    12.         %>  
    13.     </head>  
    14.     <body>  
    15.           
    16.         <form name="theForm" action="example.asp?postback=true" method="post">  
    17.             <p>type some content in editor and click on the save button</p>  
    18.         <%  
    19.             Dim editor  
    20.             Set editor = New CuteEditor  
    21.             editor.ID = "Editor1"  
    22.             editor.XHTMLOutput=true  
    23.             editor.Draw()  
    24.                                                   
    25.             ' Request.Form(ID) access from other page  
    26.         %>  
    27.           
    28.         <br/><br/>  
    29.                   
    30.         <textarea name="textbox1" id="Textarea1" style="font-family:Arial;height:250px;width:730px;"><%= Server.HTMLEncode(result) %></textarea>        
    31.                   
    32.                           
    33.         </form>  
    34.     </body>  
    35. </html>  

    Regards,

     

    Ken 

View Complete Thread