views:

40

answers:

1

In ASP.NET, http handlers can contain a validate element.

What exactly does this do/mean?

A: 

From MSDN HttpHandlerAction.Validate Property:

If the Validate property is false, ASP.NET will not attempt to load the class until the actual matching request comes, potentially delaying the error but improving the startup time.

Rob