I have a page with a Cute Editor.NET (.NET 2.0 Site) wherein I'm trying to insert a custom tag using PasteHTML(). There are some oddities indeed:
- PasteHTML('<placeholder id='blah'><span>Some Text</span></placeholder>') will strip the placeholder tags
- PasteHTML('<placeholder id='blah'><span>Some Text</span></placeholder>') will strip the beginning 'placeholder' tag if I set DisableAutoFormatting to True
- PasteHTML('<div>Some Text</div><placeholder id='blah'><span>Some Text</span></placeholder>') with DisableAutoFormatting = True will not strip ANY of the placeholder tags!
Any help would be much appreciated.