How can we set cute editor, so that there is neither any HTML formatting, nor any reordering of the attributes within the tags,
we want the html to look same as it is pasted.
we have already tried DisableAutoFormatting="true"
as you will see for example, below HTML -
<DIV id=Bodycontainer>
<P><asp:ImageButton onclick="SaveOrderAndRedirect" ImageUrl="images/btnSave.jpg" id="lnkSubmitOrder" runat="server"></asp:ImageButton></P>
</DIV>
when pasted in Cute editor is changed to -
<DIV id=Bodycontainer>
<P><asp:ImageButton id=lnkSubmitOrder onclick=SaveOrderAndRedirect ImageUrl="images/btnSave.jpg" runat="server"></asp:ImageButton></P>
</DIV>