integration with Netspell with .dll added to project

Last post 09-17-2004, 8:41 AM by guinntiques. 4 replies.
Sort Posts: Previous Next
  •  09-16-2004, 10:09 AM 1825

    integration with Netspell with .dll added to project

    Added netspell.dll to my project but can't find instructions on what CuteEditor requires to integrate with it????  

    By the way, the netspell demo returns an error 'Value cannot be null'. on Cutesoft's site. It doesn't even work in the download file NetSpell\demo\Demo.Web.HtmlEditor\HtmlEditor.htm
     
    It is not filling me with much confidence !!
     
    Thanks, Nick.
  •  09-16-2004, 10:55 AM 1827 in reply to 1825

    Re: integration with Netspell with .dll added to project

    Nick,

     
    Thanks for pointing the problem. We juse fixed that. We redesigned our site recenlty. We miss a dictionary entry in the web.config file which cause the problem. Sorry for the inconvenience.
     
     
     
     

    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

  •  09-16-2004, 11:01 AM 1828 in reply to 1827

    Re: integration with Netspell with .dll added to project

    No problem but you haven't pointed me in the right direction for my query Adam??
  •  09-16-2004, 11:23 AM 1829 in reply to 1828

    Re: integration with Netspell with .dll added to project

    Nick,
     
    Sorry.
     
    In the download package, we have two example files showing you how to add the spell cheked button into the CuteEditor tool bar:
     
    integrate_withnetspell.aspx
    integrate_withnetspell_vb.aspx
     
     
    Step 1: Create a spell checked custom button
      

    <script runat="server">

    void Page_Load(object sender, System.EventArgs e)

    {

        //Integrate with NetSpell

        System.Web.UI.WebControls.Image SpellingImage = new System.Web.UI.WebControls.Image ();

        SpellingImage.ToolTip = "Check Spelling";

        SpellingImage.ImageUrl = "CuteEditor_files/themes/Office2003/spell.gif";

        SpellingImage.CssClass = "button";

        SpellingImage.ID = "Spell";// This ID will be used in template


        //Editor1 is the ID of your editor

        SpellingImage.Attributes.Add("onclick","checkSpellingById('Editor1_editBox')");

        SpellingImage.Attributes.Add("type","btn");

        Editor1.RegisterCustomButton(SpellingImage);

    }

    </script>

     

    Step 2: Add the spell checker JavaScript reference on the top of your page
     
     
    <script language="JavaScript" src="<%= Request.ApplicationPath %>/CuteEditor_files/scripts/spell.js"></script>
     
    Step3: Add the spell checker button to the editor toolbar:
      

    <CE:Editor id="Editor1" runat="server" Template="Bold,Italic,Underline,Spell"></CE:Editor>

     
    Hope it helps.
     
    Let me know if you have any further questions.

     


    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

  •  09-17-2004, 8:41 AM 1845 in reply to 1829

    Re: integration with Netspell with .dll added to project

    Many thanks Adam.

    Nick

View as RSS news feed in XML