I am using TinyMCE in my ASP.net Web Forms CMS application on IIS7 and am having trouble in my content folders that are managed using the URL routing feature of .net 3.5sp1.
The root real default page of the application ("/default.aspx") works just fine; I have a custom toolbar and many settings defined for TinyMCE and it all works fantastically. My content route ("content/{PageIdentifier}" which maps to a content.aspx page in the root of the site at the same level as default.aspx) doesn't work very well. When the TinyMCE editor is invoked, it is in its default state -- my custom toolbar buttons and all of the custom settings (e.g. the stuff set in tinyMCE.init()) are ignored and it just comes up in default mode, as if no parameters were set (toolbar at bottom with few buttons).
I was thinking the editor can't find some or all of its js files that are in ~/static/js/tinymce since it's in a different folder level than what the route says it is (since, often if there's a JS error, this is how the editor appears). I tried moving content.aspx to a real /content/ folder, but that did nothing (at least relative addressing would work, then). I am at a loss.