I have a http handler for authentication.
when I integrate cuteeditor with my project none of the dialogboxes open up properly. A javascript error is thrown saying ";" is expected and the dialog box open up with almost nothing but a few buttons. the button have names like [[image]] instead of image.
I think the problem is the Load.ashx .
If I disable my handler, everything works fine.
In my handler, after authentication is done, I load the page with below code.
//Write the login file
IHttpHandler Newhandler = PageParser.GetCompiledPageInstance(context.Request.FilePath, fileName, context);
Newhandler.ProcessRequest(context);
context.ApplicationInstance.CompleteRequest();