121⟩ When during the page processing cycle is ViewState available?
After the Init() and before the Page_Load(), or OnLoad() for a control.
“Learn ASP Programming by Interview Questions and Answers.”
After the Init() and before the Page_Load(), or OnLoad() for a control.
System.Web.UI.Page
System.Web.UI.Page.Culture
When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of its constituents.
Add an OnMouseOver attribute to the button. Example: btnSubmit.Attributes.Add("onmouseover","someClientCodeHere();");
Integer, String, and Date.
The answer is server-side code since code-behind is executed on the server. However, during the code-behind's execution on the server, it can render client-side code such as JavaScript to be processed in the clients browser. But just to be clear, code-behind executes on the server, thus making it server-side code.
All user input data validation should occur on the server at a minimum. Additionally, client-side validation can be performed where deemed appropriate and feasable to provide a richer, more responsive experience for the user.
Server.Transfer transfers page processing from one page directly to the next page without making a round-trip back to the client's browser. This provides a faster response with a little less overhead on the server. Server.Transfer does not update the clients url history list or current url. Response.Redirect is used to redirect the user's browser to another page or site. This performas a trip back to the client where the client's browser is redirected to the new page. The user's browser history list is updated to reflect the new address.
Valid answers are:
· A DataSet can represent an entire relational database in memory, complete with tables, relations, and views.
· A DataSet is designed to work without any continuing connection to the original data source.
· Data in a DataSet is bulk-loaded, rather than being loaded on demand.
· There’s no concept of cursor types in a DataSet.
· Datasets have no current record pointer you can use For Each loops to move through the data.
· You can store many edits in a DataSet, and write them to the original data source in a single operation.
· Though the DataSet is universal, other objects in ADO.NET come in different versions for different data sources.
The Global.asax (including the Global.asax.cs file) is used to implement application and session level events.
This is where you can set the specific variables for the Application and Session objects.
When you want to inherit (use the functionality of) another class. Example: With a base class named Employee, a Manager class could be derived from the Employee base class.
Assemblies are the building blocks of the .NET framework. Overview of assemblies from MSDN
No, it just reads the information from its data source.
You must set the Data Source property and call the Data Bind method.
The Page class
Control to validate property and Text property
Data Text Field property
Compare Validator control.