views:

1266

answers:

2

I have TinyMCE working great in my ASP.NET MVC app except for the spellchecker. I followed this article but when I try to use the spellchecker it gives me an "Error: No Response" message.

Any ideas on how to resolve this issue?

Thanks in advance!!

A: 

Sounds like a problem with the ajax.

+2  A: 

Someone else was having (what sounds like) the same problem over here. The solution was to make sure the app wasn't interpreting the spellechecker service as an attempted MVC route. In other words, it's necessary to add something like this to your route definitions:

routes.IgnoreRoute("TinyMCE.ashx");
Alconja