03/01/2012
.NET Validators: How to set them as ‘display: none;’ instead of ‘visibility: hidden;’
I came across the issue that .Net would set the validators as a hidden span, using ‘visibilty: hidden;’, rather than really not displaying at all.
After a simple search I came to the conclusion that you should set the Display property to Dynamic instead of static.
Problem solved. 🙂