0

today I seen BaseDataList in MSDN Tutorial.But I am confuse about BaseDataLIst control / class. Is it concept or web form control ? or Is it base class for DataControls in asp.NET According to msdn they were showing its similar to DataList and DataGrid controls. BaseDataList description also available from .Net 2.0 to till now. Can you please answer to understand concept. Thanks in advance

Malice
  • 3,927
  • 1
  • 36
  • 52
Niks
  • 997
  • 2
  • 10
  • 28

1 Answers1

1

It is not a control, it's an abstract class meaning that it provides base functionality that must be inherited by another class to be used. In this case it provides common functionality for the DataList and DataGrid controls so that methods like GetData and events like SelectedIndexChanged are available to both.

Malice
  • 3,927
  • 1
  • 36
  • 52