html table cast

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
i have an html table i need to put in session. is there something i can do
to make this lighter before putting into session or is this ok to do? (not
many rows in the table at one time around 10 rows 7 or 8 columns on avg)

thanks,
rodchar
 
i have an html table and the data table that is the data source. does it
matter which one i put in session? i'd like to use the data table if ok?
 
rodchar said:
hey all,
i have an html table i need to put in session. is there something i can do
to make this lighter before putting into session or is this ok to do? (not
many rows in the table at one time around 10 rows 7 or 8 columns on avg)

There is no purpose to store controls in a session variable. Controls
are components, and can only be used once. When the page where the
controls are used is disposed, the controls are disposed also. If you
try to reuse the control on another page, it won't work properly.

Been there, done that. ;) (Well, not with session variables, but with
static caching.)
 
Back
Top