S
shl
My app is for data entry over the web. The user enters
data into a datagrid on the 1st pg, which I put into a
datatable ( this datatable has 10 columns, and could be
up to about 100 rows). When the user is finished with
this data entry, he goes to the 2nd pg, where another
data grid is displayed, and some of the data (about 5 of
the columns from the 1st pg)is to be displayed in the
datagrid in read only mode, and the user can enter more
info. The 'powers to be' want this data entry split over
two pages, and my question is can/how can the data from
the 1st pg be transferred to the 2nd page - is it
possible to pass a datatable from page to page without
having to connect/access the database again. I've also
tried creating a collection of data items (data
structures that mimic the datarows), and the collection
works fine on the 1st page (adding, etc), but I can't
seem to pass it/access it from the 2nd page with the data
still present. Any ideas welcome. Thanks.
data into a datagrid on the 1st pg, which I put into a
datatable ( this datatable has 10 columns, and could be
up to about 100 rows). When the user is finished with
this data entry, he goes to the 2nd pg, where another
data grid is displayed, and some of the data (about 5 of
the columns from the 1st pg)is to be displayed in the
datagrid in read only mode, and the user can enter more
info. The 'powers to be' want this data entry split over
two pages, and my question is can/how can the data from
the 1st pg be transferred to the 2nd page - is it
possible to pass a datatable from page to page without
having to connect/access the database again. I've also
tried creating a collection of data items (data
structures that mimic the datarows), and the collection
works fine on the 1st page (adding, etc), but I can't
seem to pass it/access it from the 2nd page with the data
still present. Any ideas welcome. Thanks.