Spellcheck works fine on my local machine. However, when I deploy the application on a server, spellcheck produces the following error: No dictionary loaded.
The following HTTPHANDLER is in the web.config file:
The dictionary files are in the App_Data/RadSpell directory.
I verified the ASPNET machine account and NETWORK SERVICE account access to the App_Data directory on the server. I am running IIS 7 on the server.
I even tried to explicitly set the dictionary path in the editor:
Am I missing something?
The following HTTPHANDLER is in the web.config file:
<add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false"/>The dictionary files are in the App_Data/RadSpell directory.
I verified the ASPNET machine account and NETWORK SERVICE account access to the App_Data directory on the server. I am running IIS 7 on the server.
I even tried to explicitly set the dictionary path in the editor:
<telerik:RadEditor ID="editorAnswer" Runat="server" Font-Names="Arial" Font-Size="12pt"> <SpellCheckSettings DictionaryPath="~/App_Data/RadSpell/" />Am I missing something?