views:

251

answers:

2

It's taking some time to do every time I debug my application. Is it something I can speed-up or skip?

+2  A: 

Validating the website would generally mean running it against all the rules set up for W3C validation for the type of HTML/XHTML you are using. If there are any validation problems, they would generally show up as warnings on your error list.

TheTXI
So I should be able to turn this off?
tpower
that is up to you. I personally wouldn't turn it off because as a web developer, meeting the W3C standards as well as other standards that deal with handicap accessibility are important to me in delivering a good product that will work on most browsers. There should be settings where you can adjust the level of the validation that is done, but if I were you I would just put up with the few extra seconds of loading time when debugging your project.
TheTXI
A few extra minutes each build is not acceptable. But I do have validation turned off in 'Text Editor'/'HtTML'/'Validation', are there any other options for this?
tpower
A: 

I was thinking about other validations. But anyways, following link could help you.

ASP.NET validation controls.

Syed Tayyab Ali
"This article discusses in detail how the ASP.NET validation controls work."
tpower
Yes, you are looking for html/xhtml validation. therefore i edited my post and mention that it is dealing with other validation.
Syed Tayyab Ali