The new version of the dll is OK, the code between tags "script" is not modified yet.
But the new property "ConvertHTMLTagstoLowercase" does not works properly !?!
It is not a problem for me, as long as the code does not change ;-)
Example:
<Script language="javascript">
var No;
No = 2;
for(i=0;i<No;i++){}
</Script>
<Div>Test</Div>
Becomes:
<script language="javascript">
var No;
No = 2;
for(i=0;i<No;i++){}
</script>
<div>Test</div>
whether I set "true" or "false" to this property !?!