We have an ASP.NET 2.0 WebForms application that uses MS Ajax 1.0. It works great in all of our environments (dev, test, IE6 VM, etc.). However, client-side verification does not occur on the client site.
We are currently trying to eliminate all the various factors, and along the way we asked them to get the source of their page and send it to us, and we found something interesting.
In our environment, our page has ASP.NET javascript in CDATA blocks:
<script type="text/javascript">
//<![CDATA[
. . .
//]]>
</script>
In its environment, the same code looks like this:
<script type="text/javascript">
</script>
It may be a red herring, but I would like to exclude it as the cause of the verification problems.
Does anyone know if specific configurations / patches / versions of ASP.NET will do this?