There are four types of ASP.NET server controls, what are they?
HTML Server Controls, Web Server Controls, network controls, operating system controls
HTML Server Controls, Web Server Controls, Validation Controls, and Custom Controls.
Server controls, Network controls, Validation Controls, and Custom Controls.
None of the above
HTML uses HTTP protocol. HTTP is ___________.
State -full
State-less.
State-half
None of the above
In the Server-Side processing in ASP. Net, When a server receives a request for a page, it retrieves the page from the disk and gives it to the ASP Engine. The ASP Engine compiles the page and creates a page class. Subsequently, the class is instantiated and executed, thereby providing a________.
Response object
Request object
Session object
None of the above
ASP.NET server controls are state-full. The system maintains the states of the controls automatically. All server controls are typically defined with a __________attribute.
runat=“client”
runat=“server”
runat=“ client & server”
None of the above
When a user enters data and submits a form back to the server, it is known as ___________.
Post back
Post front
Post rear
None of the above
What is the sequence of events to be executed when a page is loaded?
Change events, Page_Init, Page_Load, Action events, and finally the Page_Unload.
Action events ,Page_Init, Page_Load, Change events, , and finally the Page_Unload.
Page_Init, Page_Load, Change events, Action events, and finally the Page_Unload.
None of the above.
In an ASP page, scripts and HTML tags are usually intermixed. What is this coding is known as?
In-Page Coding
Out-page coding
in & out page coding
None of the above
HTML controls ___________ at the server-side. Their values do not persist. The HTML server controls have been developed both of these problems. The ASP Engine maps the HTML server controls to HTML controls before a page is sent to the client.
static
not programmable
programmable
None of the above
What is data binding?
Certain HTML server controls can be bound to a data source. For example, if a list box is bound to a data source, it is automatically loaded with the data in the data source. This is known as data binding.
Certain HTML server controls can be bound to a data source. For example, if a list box is bound to a data source, it is manually loaded by the programmer with the data in the data source. This is known as data binding.
Certain HTML server controls can be bound to a data source. For example, if a list box is bound to a data source, it is automatically loaded & is manually loaded by the programmer with the data in the data source. This is known as data binding.
None of the above
If necessary, we can mix HTML server controls and Web server controls in the same page. Is this statement is true?
YES
NO
INVALID SATEMENT
None of the above