Hi,
I am using netTiers, and have successfully created aspx pages allowing to edit data of ONE database table each.
BUT, how to edit information coming from 2 different tables linked together with a foreign key on ONE aspx page ?
Here is the description of the problem:
I have 2 tables:
'application' and 'recommendant'. They are linked together with a
foreign key ('recommendant' has a column which corresponds to a line on
'application')
I know how to create a aspx page to edit the table 'recommendant' and a aspx page to edit the table 'application'.
BUT
how do you create ONE aspx page allowing to edit the data from the
table 'application' as well as editing the matching data in the table
'recommendant' ?
I have made lots of attemps, here is what I got:
- If I put all in one page, the databinding system is not working anymore (but the validation of required inputs works)
-
if I use a different usercontrol to put the table 'recommendant', the
databinding works but the validation of the required inputs works
please, help.