Re: The code ranging between the tags "scripts" is modified (to lower case)

  •  10-31-2005, 4:37 AM

    Re: The code ranging between the tags "scripts" is modified (to lower case)

    No... Sorry :-p
     
    But now, It does not work logically. DisableAutoFormatting and ConvertHTMLTagstoLowercase.
     
    Exemple:
    <Script type="text/javascript">
            var H_Al = 10;
            for (i=0;i<H_Al;i++){...}
    </Script>
    <Div>...</Div>
     
    Become with DisableAutoFormatting=false and ConvertHTMLTagstoLowercase=true:
    <script type="text/javascript">
            var H_Al = 10;
            for (i=0;i<H_Al;i++){...}
    </script>
    <div>...</div>
     
    Or with DisableAutoFormatting=true and ConvertHTMLTagstoLowercase=true:
    <script type="text/javascript">
            var H_Al = 10;
            for (i=0;i<h_al;i++){...}
    </script>
    <div>...</div>

    Or with DisableAutoFormatting=false and ConvertHTMLTagstoLowercase=false:
    <script type="text/javascript">
            var H_Al = 10;
            for (i=0;i<H_Al;i++){...}
    </script>
    <div>...</div>
     
    Or with DisableAutoFormatting=true and ConvertHTMLTagstoLowercase=false:
    <SCRIPT type=text/javascript>
            var H_Al = 10;
            for (i=0;i<H_Al;i++){...}
    </SCRIPT>
    <DIV>...</DIV>
View Complete Thread