I have set up spell checker in my web application using code provided in demo.
When run, misspelt words are detected, however when I hit change button, the misspelt word in textbox is not altered.
First I set the text box to spellcheck here: spell.CheckingText = JTitle.Text;
Looking at code behind and because im using master pages the field JTitle is ctl00$ContentPlaceHolder1$JTitle
Could the problem be something to do with master pages renaming objects?
In checker.aspx btChange_Click what does does the line spell.Change(txtChange.Text); do?