ADO.NET Dataset

Define ADO.NET Dataset.

- 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.

- You can use it for each loop to move through the data in the dataset.

- It is a memory-resident representation of data that provides a consistent relational programming model of the data source.

- ADO.NET dataset can be used with multiple data sources.

- It contains a collection of zero or more tables represented by DataTable objects.
Global.asax in ASP.NET
ASP.NET - Global.asax in ASP.NET - The Global.asax is including the Global.asax.cs file.....
Application_Start and Session_Start subroutines - ASP.NET
ASP.NET - Application_Start and Session_Start subroutines - These subroutines set the variables for the Application and Session objects.....
Inline code and code behind
ASP.NET - Inline code and code behind - Inline code written along side the html in a page....
Post your comment