I have started using Visual Studio.Net to create a Web application. Unfortunately, I have hit a problem.
I want to use a DataGrid on the WebForm to display records in an Access table. I have taken the following steps:
- Created an OleDbAdapter and pointed this to the relevant table.
- Generated a DataSet from the adapter
- Created a DataGrid on the WebForm using the DataSet as the data source
In Data Adapter Preview, the data is listed correctly when I press the Fill Dataset button (so presumably the link to the table is ok).
However, when I view the project in the Browser the DataGrid is not displayed (the other labels on the form are ok).
Any suggestions would be appreciated.
I want to use a DataGrid on the WebForm to display records in an Access table. I have taken the following steps:
- Created an OleDbAdapter and pointed this to the relevant table.
- Generated a DataSet from the adapter
- Created a DataGrid on the WebForm using the DataSet as the data source
In Data Adapter Preview, the data is listed correctly when I press the Fill Dataset button (so presumably the link to the table is ok).
However, when I view the project in the Browser the DataGrid is not displayed (the other labels on the form are ok).
Any suggestions would be appreciated.