R
Ross
I have an aspx page containing two IFrames, each of which
contain aspx pages. The mother page has a dataset filled
with a single call to my Oracle database. This dataset has
three tables. The mother page uses data from table1; the
first child page uses data from table2 and table3; the
last child page uses table3 only.
So the mother page's Page_Load fills the dataset and binds
to some controls. The child pages will use their Page_Load
methods to call a method on the mother page (getDataSet)
to obtain the data they need from the mother dataset.
Question: Does the Page_Load on the mother page finish
before the Page_Load on the children begin? Otherwise, the
call to getDataSet may throw some funky errors.
contain aspx pages. The mother page has a dataset filled
with a single call to my Oracle database. This dataset has
three tables. The mother page uses data from table1; the
first child page uses data from table2 and table3; the
last child page uses table3 only.
So the mother page's Page_Load fills the dataset and binds
to some controls. The child pages will use their Page_Load
methods to call a method on the mother page (getDataSet)
to obtain the data they need from the mother dataset.
Question: Does the Page_Load on the mother page finish
before the Page_Load on the children begin? Otherwise, the
call to getDataSet may throw some funky errors.