Asp.Net Questions and Answers - 2

Question: 6

What is pre render?

This phase provides the last chance to modify.

The output prior to rendering using the on pre render method.

Question: 7

What are the four types of controls that can be added to the ASP.NET pages?

HTML Server Controls

Web Server Controls

Validation Controls

Custom and User Controls

Question: 8

What are the forms of user interface?

Visual part and Code separation

Question: 9

Explain post back and non post back events?

Post back events are those that cause the Form to the posted back to the server immediately. These kinds include click type events, such as the button click event.

Non post back events are those that the form is not posted back to the server immediately. Instead the control caches these events until the next time a post back event occurs.

Question: 10

In what way the server side controls are added to the web form?

Server side controls are added to a web form in three ways. There are

Using HTML Code

Dragging controls from the Toolbox to the Design Page

Using program to bring the Controls.

Related Questions