Regarding Installing Purchased version over Trial version.

Last post 07-15-2005, 3:55 PM by kamalrawal. 8 replies.
Sort Posts: Previous Next
  •  06-30-2005, 8:16 AM 8214

    Regarding Installing Purchased version over Trial version.

    Hi,
         we used Trial version of Cute editor for .net 4.0 in our application. it got expired on last week. we purchased the Cutesoft .net editor. we need to replace the latest version over the trial version. we tried that it is giving javascript error. will this need any registry modification?
    kindly send me the procedure for deploying the purchased version.
     
    thank you
     
    with regards,
    Saravanakumar.S
  •  06-30-2005, 10:02 AM 8216 in reply to 8214

    Re: Regarding Installing Purchased version over Trial version.

    Saravanakumar,

    To deployment the CuteEditor license file, all you need to do is copying the  CuteEditor.lic to the \bin directory for the web application that uses the CuteEditor. 

    >>we need to replace the latest version over the trial version. we tried that it is giving javascript error.

    Make sure you updated the CuteEditor.dll and all the CuteEditor client files.

    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

  •  07-01-2005, 1:29 AM 8246 in reply to 8216

    Re: Regarding Installing Purchased version over Trial version.

    Hi adam,
        we have done everything as you mentioned in reply to make it work
    but still Javascript error is occuring.
    please let us know the reason for this error.
    we are using the 4 license accross the projects and organization. is it some thing wrong with the license file?
    please let me know reason.
     
    regards
    Saravanakumar.S
  •  07-01-2005, 1:49 AM 8247 in reply to 8246

    Re: Regarding Installing Purchased version over Trial version.

    Saravanakumar,
     
    It can't be a license issue.
     
    Is your site online so you can provide a URL?
     
    I think it will be easier if you can send your site URL to us.
     
     

    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

  •  07-05-2005, 8:25 AM 8355 in reply to 8247

    Re: Regarding Installing Purchased version over Trial version.

    hi adam,
          The site is for our intranet purpose. we did the following steps in cutesoft.net implementation
     
    1. we developed the application with trial cutesoft.net.
    2. we got the original licence file from Cutesoft.
    3. we replaced lic, dll files and CuteSoft_Client folder from Cutesoft.
    4. when we run a application we got client.class undefined javascript error.
     
    Kindly help me out to rectify the problem.
     
    Regards
    Saravanakumar.S 
  •  07-05-2005, 10:56 AM 8358 in reply to 8355

    Re: Regarding Installing Purchased version over Trial version.

    Saravanakumar,
     
    Do you have the same problems with the examples in the download package?
     
    It would be really helpful if you could create sample aspx page which demonstrates the exact problem with more information.


    Please make sure your code is very simple.

    For example:

     
    <%@ Page Language="C#"%> <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %> <html> <head> <title>ASP and ASP.NET WYSIWYG Editor - Default Configuration </title> <link rel="stylesheet" href="../example.css" type="text/css" /> </head> <body> <form runat="server"> <h2>Default Configuration</h2> <CE:Editor id="Editor1" EditorWysiwygModeCss="../example.css" runat="server" ></CE:Editor><br /> <asp:Button id="btnUpdate" onclick="Submit" Runat="server" Text="Show HTML"></asp:Button> <asp:Literal ID="Literal1" Runat="server" /> </form> </body> </html> <script runat="server"> void Page_Load(object sender, System.EventArgs e) { if (IsPostBack) { Literal1.Text = "<h2>The HTML you typed is...</h2><br>"; Literal1.Text += Server.HtmlEncode(Editor1.Text); } else { Editor1.Text = "Type Here"; } } public void Submit(object sender, System.EventArgs e) { Literal1.Text = "<h2>The HTML you typed is...</h2><br>"; Literal1.Text += Server.HtmlEncode(Editor1.Text); } </script>
     

    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

  •  07-15-2005, 7:42 AM 8762 in reply to 8358

    Re: Regarding Installing Purchased version over Trial version.

    We updated our license file with new trial license file and working fine.

    Now, we are having other problem when loading the page having HTML Editor.
    HTML editor will have either no value or some html tags on load of the page.
    On loading HTML editor, one temporary error message screen is appearing and disappearing within a flash of moment inside HTML editor after which the HTML tags are displayed in it.
    We've captured the error, but couldn't able to see which cutesoft dll line has the error as it disappeared in fraction of second.

    Error read as follows:

    Compilation Error 

    Description
    : An error occured during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

    Compiler Error Message: BC30201: Expression expected.

    Source Error:

    Line 2: <%@ OutputCache Duration="31536000" VaryByParam="None" Location="Client" %>
    Line 3: <%
    Line 4: if (Request.HttpMethod=="POST")
    Line 5: {
    Line 6: %>

    Source File:http://localhost/app1/CuteSoft_Client/CuteEditor/Template.aspx Line:4

    We tried to debug in Template.aspx file given in your package in the location. In that HTML is being constructed if the method is POST or else taking directly from URLReferrer. Not sure why this error occuring us. Can you please help us to solve this error? We've provided the form method as post. Expecting your solution.
     
    Thanks and Best Regards,
    U.Jayaraman,
    Software Engineer,
    Wipro Technologies,
    Mobile : +919884112047
  •  07-15-2005, 11:36 AM 8771 in reply to 8762

    Re: Regarding Installing Purchased version over Trial version.

    Is "app1" a virtual direcroty in your IIS or a normal folder under your web root?
     
     

    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

  •  07-15-2005, 3:55 PM 8790 in reply to 8771

    Re: Regarding Installing Purchased version over Trial version.

    Dear Adam,

    I guess it was a part of virtual directory. Any way this problem is being resolved by replacing the Template.aspx file which is downloaded from the Cutesoft site with the existing file under Cutesoft_Client\CuteEditor\Template.aspx.

    Thanks,
    Kamal Rawal


View as RSS news feed in XML