Hi, I'm wondering if someone can point me in the right direction. I've got an ASP.NET web application. And there's autogenerated portion of JavaScript in every page that handles postback. Sometimes that javascript is surrounded by
<[CDATA[ ... ]]>
, while on the other machine it may be enclosed in simple HTML comment like
<!-- ... -->
So, I'm searching for an answer or a clue about what may cause this difference. Any ideas?
Answer:
The cause is version of .Net framework. Was hard to find because I used installer to setup everything, from web server to framework and application sources. Not very obvious line in httpd.conf caused latest framework to be used.
Story behind: MS changed JS generation from version 2.0 sp1 to use CDATA.
Thanks for replies.