Re: losing markup switching between HTML and NORMAL mode when in frameset

  •  08-10-2006, 8:14 AM

    Re: losing markup switching between HTML and NORMAL mode when in frameset

    Hi Adam,
     
    Well i've just reproduced the same error again.
     
    It seems when i have a <table></table> above the table which holds the editor it produces the same result mentioned before.
     
    When u remove the html markup of the first table it works perfect, but with the first html table markup it produces the strange behaviour.
     
    Any help appreciated
     
    //Matthijs
     
    Here's the code:
     

    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="Default3" %>

    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head id="Head1" runat="server">

    <title>Untitled Page</title>

    </head>

    <body>

    <form id="form1" runat="server">

    <table>

     

    <tr>

    <td>Some sample text</td>

     

    </tr>

     

    </table>

     

    <table class="MainTable">

    <tr>

    <td>

    <CE:Editor id="MainEditor" runat="server"></CE:Editor>

    </td>

     

    </tr>

     

    </table>

    </form>

    </body>

    </html>

View Complete Thread