Rich Blumer
Rich Blumer

Reputation: 998

Using TinyMCE with ASP.NET MVC

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!!

Upvotes: 1

Views: 3452

Answers (2)

Alconja
Alconja

Reputation: 14883

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");

Upvotes: 3

Andy Chase
Andy Chase

Reputation:

Sounds like a problem with the ajax.

Upvotes: 0

Related Questions