My app uses a datatable to send some session data between pages.
This data table has info about several variables that are present in all pages, and I need them to be persistent when the user returns to the page.
Datatable structure:
Page Val1 Val2 Val3
1 a a a
1 b c a
2 x y z
3 m n o
3 m n o
Each page might need to up to 3 rows of data. I have more than 50 different pages. I cant save data on a database.
How can I use a datatable / dataview to
- delete all rows from a page,
- insert n rows to a page or
- filter all rows from a page?
NetAngel
This data table has info about several variables that are present in all pages, and I need them to be persistent when the user returns to the page.
Datatable structure:
Page Val1 Val2 Val3
1 a a a
1 b c a
2 x y z
3 m n o
3 m n o
Each page might need to up to 3 rows of data. I have more than 50 different pages. I cant save data on a database.
How can I use a datatable / dataview to
- delete all rows from a page,
- insert n rows to a page or
- filter all rows from a page?
NetAngel