Hi, I hope someone can help.
I am using a session variable to store a dataset as -
Session.Add("dsCustRecord", dsSearchResults);
I know that dsSearchResults is a dataset which contains 1 row.
When I later use the session variable -
DataSet dsCustRecord = new DataSet();
dsCustRecord = (DataSet)Session["dsCustRecord"];
The row has disappeared but the table is still there.
Where have I gone wrong?
Many Thanks.
I am using a session variable to store a dataset as -
Session.Add("dsCustRecord", dsSearchResults);
I know that dsSearchResults is a dataset which contains 1 row.
When I later use the session variable -
DataSet dsCustRecord = new DataSet();
dsCustRecord = (DataSet)Session["dsCustRecord"];
The row has disappeared but the table is still there.
Where have I gone wrong?
Many Thanks.