In my asp.net website project, I need to use a grid view that fetches data from my access database. I though I knew how to do that. But apparently something is missing. I configured the AccessDataSource to my table in the database, and did a grid view to show the contents of this table. but still when I run the website I can’t get the grid to show. What could be wrong with my code?
and another question. when I do make it run, I need to get the value of a cell in that grid when I click it. How can i do that?
first thing you need to check is weather your database table have data or not. if the records fetched from the access database is null then you will not see any gridview as there will be no records. second thing is check the datasource once again if and check the access query to see what result it is providing.