Multiple choice technology web technology

Which method do you invoke on the DataAdapter control to load your generated dataset with data?)

  1. Load ( )

  2. Fill( )

  3. DataList

  4. DataBind

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The Fill() method is used to populate a DataSet with data from a data source in ADO.NET. It executes the query and retrieves rows into the DataSet. Load() is not a standard DataAdapter method, DataList is a UI control, and DataBind is for web controls.