c# - I receive error 'Unknown Server Tag' with Page.ParseControl on a custom server control, not asp control? -
I am creating a dynamic form using XML and XSLT, anyway I use a custom ASP.NET control I am doing this, it's an HTML editor.
When I try to add control from XSLT using Page.ParseControl (& lt; the-string-from)
Unknown server tag ' FCKeditor.CKEditor '
And of: Of course, if I remove control from XSLT then everything is working fine And all regular ASP.NET controls like TextBox
etc are provided correctly for the string.
Does anyone know what I can do about this?
I can be done incorrectly, but it is my understanding that a javascript element, a server side The ASP.NET element is not. This is why you get this error instead, you should instantiate CKEditor
on the client-side (see link for details).
Comments
Post a Comment