I have an asp.net wizard type interface(several forms) that takes input for
a series of tables in a database, the arrangement is such that it is meant
to take the more meaningful information first(this will help the user).
However the foreign key constraints will not allow to populate the tables
until the latter tables have been populated(typical). My plan was to use a
DataSet that will hold the data for all tables as the user progresses, and
once the user is done, populate the tables in the order that will satisfy
the foreign key constraints. I'm assuming that I can create a DataSet
somewhere that maintains it's state across the entire
application(global.asax???) however I don't know... Any information, or
suggestions will be much appreciated, and perhaps a syntax example of
declaring the DataSet in global.asax(if that is indeed your suggestion?)
Thanks in advance,
Garland R. Frye