Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using ASPNet Spell checker in my ASP.net web application. currently it loads the whole dictionary by using

    SpellEngine.LoadDictionary("English (International)");

I want to load a common-mistake.txt and first check that file and if no suggestion available then go to dictionary Here is a code which i am using

   protected void Page_Prerender(object sender, EventArgs e)
{
    ASPNetSpell.SpellChecker SpellEngine = new ASPNetSpell.SpellChecker();
    SpellEngine.DictionaryPath = Server.MapPath("ASPNetSpellInclude/dictionaries");
    SpellEngine.LoadDictionary("English (International)");
    SpellEngine.LoadCustomDictionary("custom.txt");
    LinkButton1.Text = SpellEngine.DidYouMean(TextBox1.Text);
    Label1.Visible = (LinkButton1.Text != "");

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.