简体   繁体   中英

what is BaseDataList in ASP.NET

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM