.NET - ASP.NET

105.
What happens if an ASP.NET server control with event-handling routines is missing from its definition?
The compilation of the application fails.

106.
What are server-side comments?
Server-side comments are included in an ASP.NET page for the purpose of documentations as shown in the following code snippet:

<%--This is an example of server-side comments --%>

The server-side comments begin with <%-- and end with --%>.

107.
How can we provide the WebParts control functionality to a server control?
We can provide the WebParts controls functionality to a server control by setting the CreateWebPart property of WebPartManger.

108.
How do you prevent a validation control from validating data at the client end?
You can prohibit a validation control to validate data at the client side by setting the EnableClientScript property to False.