Can we Store datatable in session? if yes thenHow?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Koteswararao MallisettiPosted Sep 18, 2010, 9:55 AM
DataTable dt= new DataTable();
Session["storedDt"]=dt;
in the retrieving we can explicitly convert that into data table by type casting why because
it is stored as object