Asp.net mvc 如何在我的字体编辑中使用医学拼写检查器?

Asp.net mvc 如何在我的字体编辑中使用医学拼写检查器?,asp.net-mvc,c#-4.0,tinymce,Asp.net Mvc,C# 4.0,Tinymce,我在asp.net应用程序中使用tinymce编辑器,我想在我的tinymce编辑器中实现医学拼写检查,如何实现 我使用下面的脚本来显示拼写检查,当我点击编辑器的拼写检查选项时,它工作正常,但我需要医疗拼写检查,当用户在文本字段中写入内容时,它必须显示错误 tinyMCE.init( { mode : "exact", elements : controlID, theme : "advanced", p

我在asp.net应用程序中使用tinymce编辑器,我想在我的tinymce编辑器中实现医学拼写检查,如何实现

我使用下面的脚本来显示拼写检查,当我点击编辑器的拼写检查选项时,它工作正常,但我需要医疗拼写检查,当用户在文本字段中写入内容时,它必须显示错误

 tinyMCE.init(
            {
                mode : "exact", elements :  controlID, theme : "advanced",
                plugins : "table,advlink,preview,media,contextmenu,paste,directionality,fullscreen,spellchecker",
                theme_advanced_toolbar_location : "top",
                theme_advanced_toolbar_align : "left",
                external_link_list_url : "example_link_list.js",
                external_image_list_url : "example_image_list.js",
                media_external_list_url : "example_media_list.js",
                paste_use_dialog : false,
                paste_create_paragraphs: false,
                theme_special_link_targets : "_something=My somthing;_something2=My somthing2;_something3=My somthing3;",
                paste_auto_cleanup_on_paste : true,
                paste_convert_headers_to_strong : false,
                paste_strip_class_attributes : "all",
                paste_remove_spans : false,
                paste_remove_styles : false,    
                forced_root_block : '',
//              plugin_preview_pageurl : "../Content/PreviewRichTextElement.aspx",
                theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,bullist,numlist,outdent,indent,|,link,unlink,|,image,preview,fullscreen,|,cleanup,removeformat,spellchecker",
                theme_advanced_buttons2 : "formatselect,fontselect,fontsizeselect,|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolor,backcolor",
                theme_advanced_buttons3 : "cut,copy,paste,pastetext,pasteword,|,tablecontrols,|,visualaid",
                spellchecker_languages : "+English=en",
                spellchecker_rpc_url:"../Admin/SpellChecker.ashx"
            });

在这里查看更多信息:

在这里查看更多信息:

我已经在使用这个,但是对于少数几个医学术语,它不起作用,这就是我需要医学拼写检查的原因。我假设使用的浏览器不仅仅是firefox?我已经在使用这个,但是对于少数几个医学术语,它不起作用这就是我需要医学拼写检查的原因我想使用的浏览器不仅仅是firefox?