Hi all
if i have a form for data entry , saving data into a database consist of two relational tables.
tblEmployee
EmployeeCode int PK Employee Name nvarchar(50) Employee Age number Employee Sex nvarchar (20)
tblJobDetails
EmployeeCode int FK ( this to create one to many relation with the tbl Employee ).
JobID int PK JobTitle nvarchar (50) JobStartedDate date JobStatus nvarchar(20)
now :
1- what is the best way to make two forms one for Employee information and the other for job details ?
2- i was thinking is to do it in two pages, PageEmployee.aspx then there is abutton Next to go to the other Page JobDetials.aspx then click button ADD to add all informations together. and i think this can be done through Session , if its the best and proffesional
way to do it, how i do it ...
Go to the complete details ...