I've been reading about ASP.NET Validation and found a related question on SO's How do I get Client-side validation of ASP.Net page to run?, but nothing seems to address why some of this validation would be posting to the Browser.
Obviously, something is wrong. The following text is being displayed:
var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } //]]>
That last little bit looks like a CDATA closing tag, and the only CDATA tags I have are ones linked in from social media sites like Google or Facebook.
Could anyone tell me what causes this?
It is possible I have another setting telling the client to dump output to the browser like I did in this post.