How do I create a GridView, with sorting, paging, editing, deleting capability, that get's loaded by a tableadapter based on a querystring "table" variable?
I have around 20 lookup tables that I want to put on an admin portion of a website for the admin to manage. I don't want to create 20 different pages (1 for each table). I want to create one page that has a list of the tables to be edited as links with a querystring table variable tied to them. When the admin clicks on the link, a gridview is loaded with the passed table variable.
I have created a DAL with DataTables and TableAdapters for all of the lookup tables.