How much session can be stored?
-
I would like to store a datatable into session in order to display at another aspx file, so how much session can be stored? is it will make system slow because of much of data ?
Best regards, Chee ken
It is not good to put huge data in session because it will cause a lot of problem later on. You can opt for some alternative for your requirement if you are having a huge data. BTW if you don't have many records you can put that datatable in session.
Best Regards, Apurva Kaushal
-
I would like to store a datatable into session in order to display at another aspx file, so how much session can be stored? is it will make system slow because of much of data ?
Best regards, Chee ken
You can use all the server free memory. But remember the session, two user with the same session var the free memory is the half for each one. :)
keep Learning and you never will be out of date...
-
I would like to store a datatable into session in order to display at another aspx file, so how much session can be stored? is it will make system slow because of much of data ?
Best regards, Chee ken
if u want to share the data between the 2 users then you can use the aplication object for that otherwise session object is the right way to put the data. it will not effect the performance of the application.
Pankaj Gupta (Take it easy)