I created a bound Datagrid in ASP.NET and the code below executes without failing:
dsAuthors.Clear();
oleDbDataAdapter1.Fill(dsAuthors1);
And the webpage shows up without the DataGrid. The properties Visible & Enable are true. The columns of the dataset are visible before entering Debug Mode. A "Fill DataSet" option in the Data Adapter Preview of oleDbDataAdapter shows my data.
What could be preventing the DataGrid from showing up in the Web Form?
dsAuthors.Clear();
oleDbDataAdapter1.Fill(dsAuthors1);
And the webpage shows up without the DataGrid. The properties Visible & Enable are true. The columns of the dataset are visible before entering Debug Mode. A "Fill DataSet" option in the Data Adapter Preview of oleDbDataAdapter shows my data.
What could be preventing the DataGrid from showing up in the Web Form?