Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
Using English-Uk Dictionary
posted

Hi, I'm trying to configure my app to use the WebSpellChecker - it works fine except I want to use the English-Uk dictionary not the generic English one. Im new to this so please be patient with me. I have followed the steps here:  i.e my code behind page has:

 Public Property Dictionary() As String
        Get
            Me.WebSpellChecker1.Dictionary = Server.MapPath(".") + "/dictionaries/uk-english-v2-whole.dict"
        End Get
        Set(ByVal value As String)

        End Set
    End Property
   
    Public Property LanguageParser() As LanguageType
        Get
            Me.WebSpellChecker1.SpellOptions.LanguageParser = LanguageType.English
        End Get
        Set(ByVal value As LanguageType)

        End Set
    End Property

I have also included the import statement and copy the dictionary to the folder above - but it still uses the generic dictionary - can anybody help?