Overcome the stateless nature of Http
Hello Imar,
Iâm studying the chapters on Data controls (13- 15) but, in the end, Iâm not sure how to overcome the stateless nature of Http.
Letâs suppose I have a WebForm (InsertContract.aspx) to insert the data of new contracts.
After having inserted a few data (contract code, date of start and so on) I realize that I need to pick the Id of the holder of the contract. In order to do that, I need to go to another WebForm (People.aspx) and pick a row from a GridView of people loaded from the Db. Once chosen the right person, I would like to go back to InsertContract.aspx with the Id of the chosen person and find the data already inserted still there.
In a desktop application this is common practice. But I could do that in Asp.Net ? Cache ? Session state ?
Could you point us to a working implementation of the kind ?
Thank you
Antonius
|