Html changing when going from normal tab to html and visa versa..

  •  07-07-2009, 2:13 PM

    Html changing when going from normal tab to html and visa versa..

     

    Original html -  

    <HTML>
        <HEAD>
        </HEAD>
        <BODY>
    <table><tr>
         <td colspan="2"><a href=""><img src="images/more.jpg" border="0" vspace="8"></a></td>
        </tr></table>
        </BODY>
    </HTML>
     

    First time changing from html mode to normal mode and back to html mode it becomes -  

    <HTML>
        <HEAD>
        </HEAD>
        <BODY>
            <TABLE>
                <TR>
                    <TD colSpan=2><A href=""><IMG src="" src="images/more.jpg" vspace=8 border=0></A></TD>
                </TR>
            </TABLE>
        </BODY>
    </HTML>
     

    Second time changing the tab it becomes - 

    <HTML>
        <HEAD>
        </HEAD>
        <BODY>
            <TABLE>
                <TR>
                    <TD colSpan=2><A href=""><IMG src="" vspace=8 border=0 ?></A></TD>
                </TR>
            </TABLE>
        </BODY>
    </HTML>

     We already have set the property - DisableAutoFormatting="true"

     

     

     

View Complete Thread