spell check user input

Ask a Question related to ASP, Design and Development.

  1. #1

    Default spell check user input

    HI,

    I want to add the "Did you mean" - Google feature to searches on my
    website.

    My website lets users search for a business using different
    parameters.
    If there is no match, I want to do a spell check on the entered
    parameters.

    I need to be able to check words with an english dictionary as well as
    add words
    (business names) to the dictionary.

    At the moment I am looking at the SpellServer by Chado, JSPELL HTML
    SERVER, and
    AcivSpell by CFDEF.COM.
    Does anyone have any experience with these? I am looking for an
    inexpensive solution.
    (Not using word on the server.)

    Any ideas of how to develop a spell check for ASP, or any knowledge
    and reconmendations
    on inexpensive existing software would help me a lot.

    thanks, Jennifer
    jen92103@yahoo.com Guest

  2. Similar Questions and Discussions

    1. Spell Check and Grammer Check
      Hello, Does anybody know about some good spell checker/grammer checker for html/asp pages? Thank you, Regards, Raj.
    2. Spell Check
      I lost spell check in outlook express after removing microsoft picture it. how can I get it back
    3. Check website user input with PHP
      Hello everybody, Currently I'm working on a webshop. When a user, inputs a website I want to check if it exists. How can I do this? I'm...
    4. Spell check...not again :)
      Hi all, I got two questions about spell check in FM. It's probably been asked before, but I don't find it, neither does Google :( Anyway, I use...
    5. email form input after user has check it for mistakes
      Hi I have been ask to try a create a form on my works website to allow teachers to fill it out the click button that emails to the boss I...
  3. #2

    Default Re: spell check user input

    The following Javascript works for me. It invokes the Windows spell checker
    at the client's desktop so it has a familiar look/feel - and the price is
    right. But it DOES require Word at the desktop, so ... . Watch word
    wraps, etc.

    AS

    function jspeller() {

    var jobjWord = new ActiveXObject("Word.Application"); //
    create application object

    jobjWord.WindowState = 2;
    // minimized

    jobjWord.Visible = 0; // not visible

    var jobjDocument = jobjWord.Documents.Add( "", false, 1, true);
    // create document object

    jobjDocument.Content=document.add_form.vcomment.va lue; //
    assign input text content

    jobjDocument.CheckSpelling(); // perform spell check

    document.add_form.vcomment.value = jobjDocument.Content.Text; //
    assign returned value

    jobjDocument.Close (0);
    // housekeep

    jobjWord.Application.Quit (-1);

    jobjDocument = null;

    jobjWord = null;

    return;

    }



    Arnold Shore Guest

  4. #3

    Default Re: spell check user input

    @ Arnold Shore
    i read your reply
    can u please elaborate it.
    i want to use spell checker on my website, which is in asp.net
    so how can i make it work with your suggested answer.
    please help me,
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139