Required field validator control in ASP.NET
when porting pages(completely functional) from ASP.NET 1.1 to ASP.NET 2.0 client side validation errors occur. I have debugged the problem down to "any" validation control being present in the code causes the following errors.
Line: 3
Char: 1
Error: syntax error
Code: 0
URL: bla bla bla
this error ONLY appears when a validation control is used in the .aspx page. The exact page which works perfect in .NET 1.1.
I know form "4GuysFromRolla" that the .NET 2.0 validation controls fail to work on NON microsoft browsers but i cant even get it to work on IE 6.x
To be clear i am NOT writing any javascript directly. My code uses only server side controls "RequiredFieldValidator, CompareValidator" which in turn should render the client side validation code for the controls to actually work as disired.
I have tried everything and this is driving me bonkers. Can someone please help?

